summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-09-20 11:03:15 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-09-20 11:09:47 +0200
commitf3ec4d1ef553259b0a617b9d11da4ece2ecc9dfd (patch)
tree87892c9ebafcfc41b12539f6e603e21b25ead600
parent0478a0a2dade87e9bce71e9839b791c67fddfdc8 (diff)
Rename "Age" search order to "Last modified"
Use a better description for sorting by modification time, as it is not clear whether "Age" refers to the package creation date or to the modification date. The possibility to sort by "Age" is kept internally (but hidden from the user interface) such that old links to search results still work. Fixes FS#46319. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r--web/lib/pkgfuncs.inc.php4
-rw-r--r--web/template/pkg_search_form.php2
2 files changed, 5 insertions, 1 deletions
diff --git a/web/lib/pkgfuncs.inc.php b/web/lib/pkgfuncs.inc.php
index 62bea65..600e590 100644
--- a/web/lib/pkgfuncs.inc.php
+++ b/web/lib/pkgfuncs.inc.php
@@ -755,7 +755,11 @@ function pkg_search_page($SID="") {
case 'm':
$q_sort .= "Maintainer " . $order . ", ";
break;
+ case 'l':
+ $q_sort .= "ModifiedTS " . $order . ", ";
+ break;
case 'a':
+ /* For compatibility with old search links. */
$q_sort .= "-ModifiedTS " . $order . ", ";
break;
default:
diff --git a/web/template/pkg_search_form.php b/web/template/pkg_search_form.php
index 404d16e..1cc5fb2 100644
--- a/web/template/pkg_search_form.php
+++ b/web/template/pkg_search_form.php
@@ -24,7 +24,7 @@ $sortby = array(
'w' => __('Voted'),
'o' => __('Notify'),
'm' => __('Maintainer'),
- 'a' => __('Age')
+ 'l' => __('Last modified')
);
$orderby = array(