summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-08-03 01:12:47 +0200
committerterry%mozilla.org <>1999-08-03 01:12:47 +0200
commit0008de48857ba761114bf9d5b8a331eb78489d2c (patch)
tree397fac372d95bf745d9ecc24b696068d4130c6e5 /buglist.cgi
parent994b8e57cee9e11db989c5cb42604881f31e61d2 (diff)
downloadbugzilla-0008de48857ba761114bf9d5b8a331eb78489d2c.tar.gz
bugzilla-0008de48857ba761114bf9d5b8a331eb78489d2c.tar.xz
Fix a typo in the "process any SQL" feature, that has made this
feature completely busted for about a year now. I guess people don't use it...
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 585949f9b..8b209c749 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -230,7 +230,7 @@ if ((defined $::FORM{'emailcc1'} && $::FORM{'emailcc1'}) ||
}
if (defined $::FORM{'sql'}) {
- $query .= "and (\n$::FORM('sql')\n)"
+ $query .= "and (\n$::FORM{'sql'}\n)"
} else {
my @legal_fields = ("bug_id", "product", "version", "rep_platform", "op_sys",
"bug_status", "resolution", "priority", "bug_severity",