From 062a400700e59b7bf8370effeb8527931cc62e3a Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" Date: Mon, 2 Aug 1999 16:12:47 +0000 Subject: [PATCH] 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... --- webtools/bugzilla/buglist.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webtools/bugzilla/buglist.cgi b/webtools/bugzilla/buglist.cgi index 585949f9b8f..8b209c74976 100755 --- a/webtools/bugzilla/buglist.cgi +++ b/webtools/bugzilla/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",