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
55108104
Commit
55108104
authored
Jan 23, 2003
by
timeless%mozdev.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 190197 AnyEntryGroups() is broken in globals.pl; call from enter_bug.cgi breaks bug entering
patch by jon@vmware.com r=justdave a=justdave
parent
814dd540
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
5 deletions
+8
-5
globals.pl
globals.pl
+8
-5
No files found.
globals.pl
View file @
55108104
...
...
@@ -474,12 +474,15 @@ sub AnyEntryGroups {
$query
.=
" AND product_id = $product_id"
if
(
$product_id
);
$query
.=
" LIMIT 1"
;
SendSQL
(
$query
);
$::CachedAnyEntryGroups
{
$product_id
}
=
MoreSQLData
();
FetchSQLData
();
PopGlobalSQLState
();
return
$::CachedAnyEntryGroups
{
$product_id
};
if
(
MoreSQLData
())
{
$::CachedAnyEntryGroups
{
$product_id
}
=
MoreSQLData
();
FetchSQLData
();
PopGlobalSQLState
();
return
$::CachedAnyEntryGroups
{
$product_id
};
}
else
{
return
undef
;
}
}
#
# This function checks if there are any default groups defined.
# If so, then groups may have to be changed when bugs move from
...
...
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