]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixed stupid syntax error in last patch.
authorterry%mozilla.org <>
Wed, 8 Mar 2000 03:27:41 +0000 (03:27 +0000)
committerterry%mozilla.org <>
Wed, 8 Mar 2000 03:27:41 +0000 (03:27 +0000)
showattachment.cgi

index 4a1864b3b6fc1a11b15d1dc7a88dfec06d04b713..22cfa9087a2b3a054052db746a61599dcada8328 100755 (executable)
@@ -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) {