diff options
author | cyeh%bluemartini.com <> | 2000-08-29 03:44:28 +0200 |
---|---|---|
committer | cyeh%bluemartini.com <> | 2000-08-29 03:44:28 +0200 |
commit | 484444e8bfbb3b785729c3a206c7999fda176b76 (patch) | |
tree | ed422963fd6331faf8c2c062b7cd16c88cb2345f | |
parent | ca721c979535302b4a84add860ec41968639e5e0 (diff) | |
download | bugzilla-484444e8bfbb3b785729c3a206c7999fda176b76.tar.gz bugzilla-484444e8bfbb3b785729c3a206c7999fda176b76.tar.xz |
fix for 45118: Target milestone setup issue. patch submitted by
matty@box.net.au (Matthew Tuck). now creates a milestone entry for the
first test product
-rwxr-xr-x | checksetup.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/checksetup.pl b/checksetup.pl index f3371b977..f82dfae6a 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -953,6 +953,7 @@ unless ($sth->rows) { '"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 milestones (product, value) VALUES ("TestProduct","---")'); } |