diff options
author | mistic100 <mistic@piwigo.org> | 2013-07-06 18:31:14 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-07-06 18:31:14 +0000 |
commit | 29e2ed6b91fd619a4007d11c4889827362a63cf5 (patch) | |
tree | aa8ae31bada058cecb9533230c7c4ecc41b0e114 /include/functions_category.inc.php | |
parent | 754af8dddef9a8baa7dcff1295cc9cc75b959101 (diff) |
bug 2931: revert r23675 & r23721, make element_set_ranks.php uses ASC keyword (+ migration task)
git-svn-id: http://piwigo.org/svn/trunk@23813 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_category.inc.php')
-rw-r--r-- | include/functions_category.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/functions_category.inc.php b/include/functions_category.inc.php index ec9b9c93a..7cde5e35c 100644 --- a/include/functions_category.inc.php +++ b/include/functions_category.inc.php @@ -221,16 +221,16 @@ function get_category_preferred_image_orders() return trigger_event('get_category_preferred_image_orders', array( array(l10n('Default'), '', true), - array(l10n('Photo title, A → Z'), 'name', true), + array(l10n('Photo title, A → Z'), 'name ASC', true), array(l10n('Photo title, Z → A'), 'name DESC', true), array(l10n('Date created, new → old'), 'date_creation DESC', true), - array(l10n('Date created, old → new'), 'date_creation', true), + array(l10n('Date created, old → new'), 'date_creation ASC', true), array(l10n('Date posted, new → old'), 'date_available DESC', true), - array(l10n('Date posted, old → new'), 'date_available', true), + array(l10n('Date posted, old → new'), 'date_available ASC', true), array(l10n('Rating score, high → low'), 'rating_score DESC', $conf['rate']), - array(l10n('Rating score, low → high'), 'rating_score', $conf['rate']), + array(l10n('Rating score, low → high'), 'rating_score ASC', $conf['rate']), array(l10n('Visits, high → low'), 'hit DESC', true), - array(l10n('Visits, low → high'), 'hit', true), + array(l10n('Visits, low → high'), 'hit ASC', true), array(l10n('Permissions'), 'level DESC', is_admin()), )); } |