Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
8790dbf3
Commit
8790dbf3
authored
Oct 15, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix invalid SQL introduced by last patch.
parent
5d6effa4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
checksetup.pl
checksetup.pl
+8
-6
No files found.
checksetup.pl
View file @
8790dbf3
...
@@ -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.")'
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment