Module: appdb Branch: master Commit: 2e81a3cec6f54caf74a072ac000480a2a10aac9f URL: http://source.winehq.org/git/appdb.git/?a=commit;h=2e81a3cec6f54caf74a072ac0...
Author: Alexander Nicolaysen Sørnes alex@thehandofagony.com Date: Fri Jun 20 20:48:54 2008 +0200
browse apps: Change 'Tested Wine version' to 'Wine version'
---
include/application.php | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/application.php b/include/application.php index 6baeeaa..80bbf1b 100644 --- a/include/application.php +++ b/include/application.php @@ -1034,7 +1034,7 @@ class Application { $aWineVersions = get_bugzilla_versions();
$oFilter->AddFilterInfo('appVersion.rating', 'Rating', array(FILTER_EQUALS), FILTER_VALUES_ENUM, array('Platinum', 'Gold', 'Silver', 'Bronze', 'Garbage')); - $oFilter->AddFilterInfo('appVersion.ratingRelease', 'Tested Wine version', array(FILTER_EQUALS), FILTER_VALUES_ENUM, $aWineVersions); + $oFilter->AddFilterInfo('appVersion.ratingRelease', 'Wine version', array(FILTER_EQUALS), FILTER_VALUES_ENUM, $aWineVersions); $oFilter->AddFilterInfo('appFamily.catId', 'Category', array(FILTER_EQUALS), FILTER_VALUES_ENUM, $aCatIds, $aCatNames); $oFilter->AddFilterInfo('appVersion.license', 'License', array(FILTER_EQUALS), FILTER_VALUES_ENUM, $aLicenses); $oFilter->AddFilterInfo('appFamily.appName', 'Name', array(FILTER_CONTAINS, FILTER_STARTS_WITH, FILTER_ENDS_WITH), FILTER_VALUES_NORMAL);