From: lpsolit%gmail.com <> Date: Wed, 26 Jul 2006 06:33:13 +0000 (+0000) Subject: Bug 343752: The 'order' field in buglist.cgi is not properly parsed when using aliase... X-Git-Tag: bugzilla-2.22.1~34 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=98ca7ce48b57f8532844216586f937e4e866978b;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 1f61e16a1a..350874ec67 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -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;