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; ...@@ -733,13 +733,15 @@ $sth->execute;
unless ($sth->rows) { unless ($sth->rows) {
print "Creating initial dummy product 'TestProduct' ...\n"; print "Creating initial dummy product 'TestProduct' ...\n";
$dbh->do('INSERT INTO products(product, description) VALUES ("TestProduct", $dbh->do('INSERT INTO products(product, description) VALUES ("TestProduct",
"This is a test product. This ought to be blown away and replaced with " . "This is a test product. This ought to be blown away and ' .
"real stuff in a finished installation of bugzilla.")'); 'replaced with real stuff in a finished installation of ' .
'bugzilla.")');
$dbh->do('INSERT INTO versions (value, program) VALUES ("other", "TestProduct")'); $dbh->do('INSERT INTO versions (value, program) VALUES ("other", "TestProduct")');
$dbh->do('INSERT INTO components (value, program, description) VALUES ("TestComponent", $dbh->do('INSERT INTO components (value, program, description) VALUES (' .
"TestProduct", "This is a test component in the test product database. " . '"TestComponent", "TestProduct", ' .
"This ought to be blown away and replaced with real stuff in a finished " . '"This is a test component in the test product database. ' .
"installation of bugzilla.")'); '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