Commit 82ade31e authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 343752: The 'order' field in buglist.cgi is not properly parsed when using…

Bug 343752: The 'order' field in buglist.cgi is not properly parsed when using aliases - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap a=myk
parent e2efa454
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment