aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-09-18 00:52:49 +0000
committerterry%mozilla.org <>1999-09-18 00:52:49 +0000
commitfa2c49a7dc03fdcd60b13d4505ff45d0740e4c90 (patch)
treea55de50a84a1d88ea2dd608e8dad26e5a8d04d1d
parent1008fc9fa512222979ae23e02e7db30c3e04d592 (diff)
downloadbugs-fa2c49a7dc03fdcd60b13d4505ff45d0740e4c90.tar
bugs-fa2c49a7dc03fdcd60b13d4505ff45d0740e4c90.tar.gz
bugs-fa2c49a7dc03fdcd60b13d4505ff45d0740e4c90.tar.bz2
bugs-fa2c49a7dc03fdcd60b13d4505ff45d0740e4c90.tar.xz
bugs-fa2c49a7dc03fdcd60b13d4505ff45d0740e4c90.zip
If a mangled "order" is specified, it was crashing.
-rwxr-xr-xbuglist.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 24584e6fe..ee4aa39fd 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'};
}