]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 343752: The 'order' field in buglist.cgi is not properly parsed when using aliase...
authorlpsolit%gmail.com <>
Wed, 26 Jul 2006 06:33:13 +0000 (06:33 +0000)
committerlpsolit%gmail.com <>
Wed, 26 Jul 2006 06:33:13 +0000 (06:33 +0000)
buglist.cgi

index 1f61e16a1a7e40ae4cb8d043f3a3d5f292c10d5d..350874ec67e99315a5249356779bd6a3211a1b60 100755 (executable)
@@ -811,7 +811,7 @@ foreach my $fragment (split(/,/, $order)) {
         # LASTORDER cookies (or bookmarks) may contain full names.
         # Convert them to an ID here.
         if ($fragment =~ / AS (\w+)/) {
-            $fragment = $columns->{$1}->{'id'};
+            $fragment = $1;
         }
 
         $fragment =~ tr/a-zA-Z\.0-9\-_//cd;