From: terry%mozilla.org <> Date: Sat, 18 Sep 1999 00:52:49 +0000 (+0000) Subject: If a mangled "order" is specified, it was crashing. X-Git-Tag: bugzilla-2.8~59 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fa2c49a7dc03fdcd60b13d4505ff45d0740e4c90;p=thirdparty%2Fbugzilla.git If a mangled "order" is specified, it was crashing. --- diff --git a/buglist.cgi b/buglist.cgi index 24584e6fe1..ee4aa39fd3 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -451,7 +451,7 @@ if (defined $::FORM{'order'} && $::FORM{'order'} ne "") { last ORDER; }; # DEFAULT - $::FORM{'order'} = "bugs.bug_status, priorities.rank, assign.login_name, bugs.bug_id"; + $::FORM{'order'} = "bugs.bug_status, bugs.priority, assign.login_name, bugs.bug_id"; } $query .= $::FORM{'order'}; }