summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorterry%mozilla.org <>1999-10-15 02:34:00 +0200
committerterry%mozilla.org <>1999-10-15 02:34:00 +0200
commit8790dbf393b1d1f031afc476e3771936dc88fa57 (patch)
tree943ebe3f996a50c4af27b5c348e0c824efd1e292 /checksetup.pl
parent5d6effa4a1cd0da1cb0e496886bb86dc3ba0c51d (diff)
downloadbugzilla-8790dbf393b1d1f031afc476e3771936dc88fa57.tar.gz
bugzilla-8790dbf393b1d1f031afc476e3771936dc88fa57.tar.xz
Fix invalid SQL introduced by last patch.
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl14
1 files changed, 8 insertions, 6 deletions
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.")');
}