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 /admin/element_set_ranks.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 '')
-rw-r--r-- | admin/element_set_ranks.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/admin/element_set_ranks.php b/admin/element_set_ranks.php index d9a917136..98f22a8cd 100644 --- a/admin/element_set_ranks.php +++ b/admin/element_set_ranks.php @@ -124,7 +124,7 @@ if (isset($_POST['submit'])) } elseif ($image_order_choice=='rank') { - $image_order = 'rank'; + $image_order = 'rank ASC'; } $query = ' UPDATE '.CATEGORIES_TABLE.' @@ -237,21 +237,21 @@ if (pwg_db_num_rows($result) > 0) // image order management $sort_fields = array( '' => '', - 'file' => l10n('File name, A → Z'), + 'file ASC' => l10n('File name, A → Z'), 'file DESC' => l10n('File name, Z → A'), - 'name' => l10n('Photo title, A → Z'), + 'name ASC' => l10n('Photo title, A → Z'), 'name DESC' => l10n('Photo title, Z → A'), 'date_creation DESC' => l10n('Date created, new → old'), - 'date_creation' => l10n('Date created, old → new'), + 'date_creation ASC' => l10n('Date created, old → new'), 'date_available DESC' => l10n('Date posted, new → old'), - 'date_available' => l10n('Date posted, old → new'), + 'date_available ASC' => l10n('Date posted, old → new'), 'rating_score DESC' => l10n('Rating score, high → low'), - 'rating_score' => l10n('Rating score, low → high'), + 'rating_score ASC' => l10n('Rating score, low → high'), 'hit DESC' => l10n('Visits, high → low'), - 'hit' => l10n('Visits, low → high'), - 'id' => l10n('Numeric identifier, 1 → 9'), + 'hit ASC' => l10n('Visits, low → high'), + 'id ASC' => l10n('Numeric identifier, 1 → 9'), 'id DESC' => l10n('Numeric identifier, 9 → 1'), - 'rank' => l10n('Manual sort order'), + 'rank ASC' => l10n('Manual sort order'), ); $template->assign('image_order_options', $sort_fields); |