]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix invalid SQL introduced by last patch.
authorterry%mozilla.org <>
Fri, 15 Oct 1999 00:34:00 +0000 (00:34 +0000)
committerterry%mozilla.org <>
Fri, 15 Oct 1999 00:34:00 +0000 (00:34 +0000)
checksetup.pl

index f8839d04d61521537ed9d0057f4896d1d9cb5ada..a4e363a8a695b6cdb5ca2ab5f5e5c8332824ea5f 100755 (executable)
@@ -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.")');
 }