From 4b44a5597b98cc64197310c505c2c4270b1f0bd8 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 25 Jul 2006 21:52:03 +0000 Subject: [PATCH] r945: To make the default sort order information be lastpost/descending we just rearrange those itmes in the fetch_x_text() function arrays --- includes/class_sort.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/class_sort.php b/includes/class_sort.php index cb1a4c0..f7ed1c2 100644 --- a/includes/class_sort.php +++ b/includes/class_sort.php @@ -173,6 +173,7 @@ class ListSorter global $lang; $keys = array( + 'lastpost' => $lang->string('Last Post Time'), 'id' => $lang->string('Bug ID'), 'summary' => $lang->string('Summary'), 'reporter' => $lang->string('Reporter'), @@ -180,8 +181,7 @@ class ListSorter 'status' => $lang->string('Status'), 'resolution' => $lang->string('Resolution'), 'priority' => $lang->string('Priority'), - 'severity' => $lang->string('Severity'), - 'lastpost' => $lang->string('Last Post Time') + 'severity' => $lang->string('Severity') ); if ($key === false) @@ -209,8 +209,8 @@ class ListSorter global $lang; $keys = array( - 'asc' => $lang->string('Ascending'), 'desc' => $lang->string('Descending'), + 'asc' => $lang->string('Ascending') ); if ($key === false) -- 2.22.5