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
d7febc0f
Commit
d7febc0f
authored
Aug 30, 2008
by
lpsolit%gmail.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Better fix for bug 452799, r=justdave
parent
ce8dd111
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
Bug.pm
Bugzilla/Bug.pm
+6
-1
No files found.
Bugzilla/Bug.pm
View file @
d7febc0f
...
...
@@ -1026,7 +1026,12 @@ sub _check_bug_status {
# A user with no privs cannot choose the initial status.
# If UNCONFIRMED is valid for this product, use it; else
# use the first bug status available.
$new_status
=
$product
->
votes_to_confirm
?
'UNCONFIRMED'
:
$valid_statuses
[
0
];
if
(
grep
{
$_
->
name
eq
'UNCONFIRMED'
}
@valid_statuses
)
{
$new_status
=
'UNCONFIRMED'
;
}
else
{
$new_status
=
$valid_statuses
[
0
];
}
}
}
# Time to validate the bug status.
...
...
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