From 8790dbf393b1d1f031afc476e3771936dc88fa57 Mon Sep 17 00:00:00 2001 From: "terry%mozilla.org" <> Date: Fri, 15 Oct 1999 00:34:00 +0000 Subject: Fix invalid SQL introduced by last patch. --- checksetup.pl | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index f8839d04d..a4e363a8a 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.")'); } -- cgit v1.2.3-24-g4f1b