Commit 8790dbf3 authored by terry%mozilla.org's avatar terry%mozilla.org

Fix invalid SQL introduced by last patch.

parent 5d6effa4
......@@ -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.")');
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment