diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-26 01:41:37 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-12-26 01:41:37 +0000 |
commit | e9aa71747e2cca0c20ccb5ce95eea28daff30ff0 (patch) | |
tree | dfe780dd2c5c598e2f5d087e9f8912eca9cc12b2 | |
parent | 3f18a25b33df582ecebf6cfaf043c6cc5939ec7c (diff) |
changed sort-by options for sound cards
-rw-r--r-- | h-source/Application/Controllers/GenericController.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/h-source/Application/Controllers/GenericController.php b/h-source/Application/Controllers/GenericController.php index 57b22ec..c8174ab 100644 --- a/h-source/Application/Controllers/GenericController.php +++ b/h-source/Application/Controllers/GenericController.php @@ -44,6 +44,10 @@ class GenericController extends BaseController $popup->itemsName = array('last inserted','alphabetically','alphabetically desc'); $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc'); break; + case 'soundcards': + $popup->itemsName = array('last inserted','alphabetically','alphabetically desc'); + $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc'); + break; default: $popup->itemsName = array('last inserted','alphabetically','alphabetically desc','compatibility'); $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc','compatibility'); |