From: terry%mozilla.org <> Date: Mon, 2 Aug 1999 23:12:47 +0000 (+0000) Subject: Fix a typo in the "process any SQL" feature, that has made this X-Git-Tag: bugzilla-2.6~22 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0008de48857ba761114bf9d5b8a331eb78489d2c;p=thirdparty%2Fbugzilla.git 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... --- diff --git a/buglist.cgi b/buglist.cgi index 585949f9b8..8b209c7497 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",