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
d52f5469
Commit
d52f5469
authored
Jul 17, 2004
by
gerv%gerv.net
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 240093 - get canconfirm working again. Patch by gerv; r=joel, a=justdave.
parent
301eb1de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
process_bug.cgi
process_bug.cgi
+8
-6
No files found.
process_bug.cgi
View file @
d52f5469
...
...
@@ -403,12 +403,14 @@ sub CheckCanChangeField {
}
# Allow anyone with "canconfirm" to confirm bugs.
if
((
$field
eq
"bug_status"
)
&&
(
$oldvalue
eq
$::unconfirmedstate
)
&&
IsOpenedState
(
$newvalue
)
&&
$UserInCanConfirmGroupSet
)
{
return
1
;
if
(
$UserInCanConfirmGroupSet
)
{
if
((
$field
eq
"canconfirm"
)
||
((
$field
eq
"bug_status"
)
&&
(
$oldvalue
eq
$::unconfirmedstate
)
&&
IsOpenedState
(
$newvalue
)))
{
return
1
;
}
}
# START DO_NOT_CHANGE
...
...
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