summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
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.")');
}