From def6f90d55e9ec52d949c6dad3bb3ce92605bb3f Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Wed, 8 Mar 2000 03:27:41 +0000 Subject: Fixed stupid syntax error in last patch. --- showattachment.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3-24-g4f1b