]> 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:31:27 +0000 (06:31 +0000)
committerlpsolit%gmail.com <>
Wed, 26 Jul 2006 06:31:27 +0000 (06:31 +0000)
buglist.cgi

index 882a2977758695676ccfbb7235fe383bc6186bb3..aacf6a46646150f59e27129b477c16ee6196e372 100755 (executable)
@@ -863,7 +863,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;