Fixed stupid syntax error in last patch.

This commit is contained in:
terry%mozilla.org 2000-03-07 19:27:41 +00:00
parent 3a5e7f06af
commit bf2aac5b81

View File

@ -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) {