From: cyeh%bluemartini.com <> Date: Thu, 14 Sep 2000 05:04:30 +0000 (+0000) Subject: fix for 13626: loaded query doesn't show "Sort By" correctly. X-Git-Tag: bugzilla-2.12~162 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=62e035a8a27853465e4d79afd32300da0939b100;p=thirdparty%2Fbugzilla.git fix for 13626: loaded query doesn't show "Sort By" correctly. patch by dave@intrec.com --- diff --git a/query.cgi b/query.cgi index 350ed1cb51..23bbf58cca 100755 --- a/query.cgi +++ b/query.cgi @@ -877,6 +877,8 @@ if ($::COOKIE{'LASTORDER'}) { unshift(@orders, $deforder); } +if ($::FORM{'order'}) { $deforder = $::FORM{'order'} } + my $defquerytype = $userdefaultquery ? "my" : "the"; print make_options(\@orders, $deforder);