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
78d40afc
Commit
78d40afc
authored
Nov 18, 2002
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 180632: corrects reference flag->is_requesteeble to flag->type->is_requesteeble
r=bbaetz a=myk
parent
8edc955f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
Flag.pm
Bugzilla/Flag.pm
+5
-4
No files found.
Bugzilla/Flag.pm
View file @
78d40afc
...
...
@@ -323,10 +323,11 @@ sub modify {
# being requested, otherwise we'll get false positives and think
# the user changed the flag when they didn't.
next
if
$status
eq
$flag
->
{
'status'
}
# the flag's status hasn't changed, and
&&
(
!
$flag
->
{
'is_requesteeble'
}
# the flag isn't specifically requestable, or
||
$status
ne
"?"
# the flag isn't being requested, or
||
(
$flag
->
{
'requestee'
}
# the requestee hasn't changed
$status
eq
$flag
->
{
'status'
}
# the flag's status hasn't changed, and:
&&
(
!
$flag
->
{
'type'
}
->
{
'is_requesteeble'
}
# the flag isn't specifically requestable
||
$status
ne
"?"
# or the flag isn't being requested
||
(
$flag
->
{
'requestee'
}
# or the requestee hasn't changed
&&
(
$requestee_email
eq
$flag
->
{
'requestee'
}
->
{
'email'
})));
# Since the status is validated, we know it's safe, but it's still
...
...
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