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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
0e1b77bf
Commit
0e1b77bf
authored
Dec 07, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't do dmose's paranoid checking of option values in the query page.
parent
0a856720
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
CGI.pl
CGI.pl
+3
-1
query.cgi
query.cgi
+5
-0
No files found.
CGI.pl
View file @
0e1b77bf
...
...
@@ -270,6 +270,8 @@ sub navigation_header {
}
$::CheckOptionValues
=
1
;
sub
make_options
{
my
(
$src
,
$default
,
$isregexp
)
=
(
@_
);
my
$last
=
""
;
...
...
@@ -294,7 +296,7 @@ sub make_options {
}
}
if
(
!
$found
&&
$default
ne
""
)
{
if
(
Param
(
"strictvaluechecks"
)
&&
if
(
Param
(
"strictvaluechecks"
)
&&
$::CheckOptionValues
&&
(
$default
ne
$::dontchange
)
&&
(
$default
ne
"-All-"
)
&&
(
$default
ne
"DUPLICATE"
)
)
{
print
"Possible bug database corruption has been detected. "
.
...
...
query.cgi
View file @
0e1b77bf
...
...
@@ -26,6 +26,11 @@ use strict;
require
"CGI.pl"
;
$::CheckOptionValues
=
0
;
# It's OK if we have some bogus things in the
# pop-up lists here, from a remembered query
# that is no longer quite valid. We don't
# want to crap out in the query page.
# Shut up misguided -w warnings about "used only once":
use
vars
@::legal_resolution
,
...
...
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