From: lpsolit%gmail.com <> Date: Wed, 26 Jul 2006 06:31:27 +0000 (+0000) Subject: Bug 343752: The 'order' field in buglist.cgi is not properly parsed when using aliase... X-Git-Tag: bugzilla-2.23.3~225 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82ade31e91fcc0bb83980a68bc605b0e7e0be453;p=thirdparty%2Fbugzilla.git Bug 343752: The 'order' field in buglist.cgi is not properly parsed when using aliases - Patch by Frédéric Buclin r=wurblzap a=myk --- diff --git a/buglist.cgi b/buglist.cgi index 882a297775..aacf6a4664 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -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;