diff options
author | terry%mozilla.org <> | 2000-03-08 23:46:18 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-03-08 23:46:18 +0100 |
commit | 4d51a2ceae39a396d359bcc35b53bb068c1cbf90 (patch) | |
tree | 6e1a634b2c4c7a73853b1b6eafa90f0b33fd244c /reports.cgi | |
parent | 684db15cb430b95feda05de480c95d55c02a1222 (diff) | |
download | bugzilla-4d51a2ceae39a396d359bcc35b53bb068c1cbf90.tar.gz bugzilla-4d51a2ceae39a396d359bcc35b53bb068c1cbf90.tar.xz |
Whoops; removed extra double-quote.
Diffstat (limited to 'reports.cgi')
-rwxr-xr-x | reports.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/reports.cgi b/reports.cgi index 805de8da9..6b2d8cb1b 100755 --- a/reports.cgi +++ b/reports.cgi @@ -600,7 +600,7 @@ FIN { my $query = "select count(bug_id) from bugs,profiles where target_milestone=\"$ms\" and userid=assigned_to and userid=\"$person\""; if( $::FORM{'product'} ne "-All-" ) { - $query .= "and bugs.product=".SqlQuote($::FORM{'product'})"; + $query .= "and bugs.product=".SqlQuote($::FORM{'product'}); } $query .= <<FIN; and |