From: terry%mozilla.org <> Date: Wed, 8 Mar 2000 03:27:41 +0000 (+0000) Subject: Fixed stupid syntax error in last patch. X-Git-Tag: bugzilla-2.12~359 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=def6f90d55e9ec52d949c6dad3bb3ce92605bb3f;p=thirdparty%2Fbugzilla.git Fixed stupid syntax error in last patch. --- diff --git a/showattachment.cgi b/showattachment.cgi index 4a1864b3b6..22cfa9087a 100755 --- a/showattachment.cgi +++ b/showattachment.cgi @@ -29,7 +29,7 @@ ConnectToDatabase(); my @row; if (defined $::FORM{'attach_id'}) { - SendSQL("select mimetype, thedata from attachments where attach_id =".SqlQuote($::FORM{'attach_id'}); + SendSQL("select mimetype, thedata from attachments where attach_id =".SqlQuote($::FORM{'attach_id'})); @row = FetchSQLData(); } if (!@row) {