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
e942748a
Commit
e942748a
authored
Oct 28, 2005
by
wurblzap%gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 313941: sanitycheck should quote bad values so empty values are apparent
Patch by Matt McHenry <mmchenry@carnegielearning.com> r=wurblzap, a=justdave
parent
f9fc6147
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sanitycheck.cgi
sanitycheck.cgi
+2
-2
No files found.
sanitycheck.cgi
View file @
e942748a
...
...
@@ -302,7 +302,7 @@ sub CrossCheck {
while
(
MoreSQLData
())
{
my
(
$value
,
$key
)
=
FetchSQLData
();
if
(
!
$exceptions
{
$value
})
{
my
$alert
=
"Bad value
$value
found in $refertable.$referfield"
;
my
$alert
=
"Bad value
"$value"
found in $refertable.$referfield"
;
if
(
$keyname
)
{
if
(
$keyname
eq
'bug_id'
)
{
$alert
.=
' (bug '
.
BugLink
(
$key
)
.
')'
;
...
...
@@ -463,7 +463,7 @@ sub DoubleCrossCheck {
while
(
MoreSQLData
())
{
my
(
$value1
,
$value2
,
$key
)
=
FetchSQLData
();
my
$alert
=
"Bad values
$value1, $value2
found in "
.
my
$alert
=
"Bad values
"$value1", "$value2"
found in "
.
"$refertable.$referfield1 / $refertable.$referfield2"
;
if
(
$keyname
)
{
if
(
$keyname
eq
'bug_id'
)
{
...
...
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