summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorterry%mozilla.org <>2000-03-08 04:27:41 +0100
committerterry%mozilla.org <>2000-03-08 04:27:41 +0100
commitdef6f90d55e9ec52d949c6dad3bb3ce92605bb3f (patch)
treed91922b556d56c02b882452938f3cbe202e186de
parentefc5af54e614e40d0d464d40fcde8c0f2d6832f6 (diff)
downloadbugzilla-def6f90d55e9ec52d949c6dad3bb3ce92605bb3f.tar.gz
bugzilla-def6f90d55e9ec52d949c6dad3bb3ce92605bb3f.tar.xz
Fixed stupid syntax error in last patch.
-rwxr-xr-xshowattachment.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/showattachment.cgi b/showattachment.cgi
index 4a1864b3b..22cfa9087 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) {