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
5c395c38
Commit
5c395c38
authored
Jul 05, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
If bugs with an invalid product/component are found, provide a link to bring up…
If bugs with an invalid product/component are found, provide a link to bring up the list of invalid bugs.
parent
9f48b25d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
sanitycheck.cgi
sanitycheck.cgi
+3
-1
No files found.
sanitycheck.cgi
View file @
5c395c38
...
@@ -227,7 +227,9 @@ foreach my $ref (@checklist) {
...
@@ -227,7 +227,9 @@ foreach my $ref (@checklist) {
my
(
$product
,
$component
)
=
(
@$ref
);
my
(
$product
,
$component
)
=
(
@$ref
);
SendSQL
(
"select count(*) from components where program = "
.
SqlQuote
(
$product
)
.
" and value = "
.
SqlQuote
(
$component
));
SendSQL
(
"select count(*) from components where program = "
.
SqlQuote
(
$product
)
.
" and value = "
.
SqlQuote
(
$component
));
if
(
FetchOneColumn
()
!=
1
)
{
if
(
FetchOneColumn
()
!=
1
)
{
Alert
(
"Bug(s) found with invalid product/component: $product/$component"
);
my
$link
=
"buglist.cgi?product="
.
url_quote
(
$product
)
.
"&component="
.
url_quote
(
$component
);
Alert
(
qq{Bug(s) found with invalid product/component: $product/$component (<a href="$link">bug list</a>)}
);
}
}
}
}
...
...
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