Commit 4ca74bcb authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 148767: Eliminates warning in rare situations.

Patch by Jouni Heikniemi <jouni@heikniemi.net>. 2rx=myk
parent 92c42f45
...@@ -1290,7 +1290,7 @@ my $query = GenerateSQL(\@selectnames, $::buffer); ...@@ -1290,7 +1290,7 @@ my $query = GenerateSQL(\@selectnames, $::buffer);
################################################################################ ################################################################################
# Add to the query some instructions for sorting the bug list. # Add to the query some instructions for sorting the bug list.
if ($::COOKIE{'LASTORDER'} && !$order || $order =~ /^reuse/i) { if ($::COOKIE{'LASTORDER'} && (!$order || $order =~ /^reuse/i)) {
$order = url_decode($::COOKIE{'LASTORDER'}); $order = url_decode($::COOKIE{'LASTORDER'});
$order_from_cookie = 1; $order_from_cookie = 1;
} }
......
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