From 98ca7ce48b57f8532844216586f937e4e866978b Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 26 Jul 2006 06:33:13 +0000 Subject: [PATCH] =?utf8?q?Bug=20343752:=20The=20'order'=20field=20in=20bug?= =?utf8?q?list.cgi=20is=20not=20properly=20parsed=20when=20using=20aliases?= =?utf8?q?=20-=20Patch=20by=20Fr=C3=A9d=C3=A9ric=20Buclin=20=20r=3Dwurblzap=20a=3Dmyk?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.2