From: terry%mozilla.org <> Date: Fri, 15 Oct 1999 00:34:00 +0000 (+0000) Subject: Fix invalid SQL introduced by last patch. X-Git-Tag: bugzilla-2.8~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8790dbf393b1d1f031afc476e3771936dc88fa57;p=thirdparty%2Fbugzilla.git Fix invalid SQL introduced by last patch. --- diff --git a/checksetup.pl b/checksetup.pl index f8839d04d6..a4e363a8a6 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -733,13 +733,15 @@ $sth->execute; unless ($sth->rows) { print "Creating initial dummy product 'TestProduct' ...\n"; $dbh->do('INSERT INTO products(product, description) VALUES ("TestProduct", - "This is a test product. This ought to be blown away and replaced with " . - "real stuff in a finished installation of bugzilla.")'); + "This is a test product. This ought to be blown away and ' . + 'replaced with real stuff in a finished installation of ' . + 'bugzilla.")'); $dbh->do('INSERT INTO versions (value, program) VALUES ("other", "TestProduct")'); - $dbh->do('INSERT INTO components (value, program, description) VALUES ("TestComponent", - "TestProduct", "This is a test component in the test product database. " . - "This ought to be blown away and replaced with real stuff in a finished " . - "installation of bugzilla.")'); + $dbh->do('INSERT INTO components (value, program, description) VALUES (' . + '"TestComponent", "TestProduct", ' . + '"This is a test component in the test product database. ' . + 'This ought to be blown away and replaced with real stuff in ' . + 'a finished installation of bugzilla.")'); }