summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Bug.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2008-08-30 04:41:57 +0200
committerlpsolit%gmail.com <>2008-08-30 04:41:57 +0200
commit0bc5225c57353027b13af1397b564d1e713e28f1 (patch)
treeeb10f4aa6dfa22d37e2865228787b6d64df971af /Bugzilla/Bug.pm
parent55596ef8c29ae876c718946d54de787f32033db0 (diff)
downloadbugzilla-0bc5225c57353027b13af1397b564d1e713e28f1.tar.gz
bugzilla-0bc5225c57353027b13af1397b564d1e713e28f1.tar.xz
Bug 452799: On bug creation, the bug status with the lowest sortkey is chosen for users without editbugs/canconfirm privs, even when UNCONFIRMED is valid - Patch by Frédéric Buclin <LpSolit@gmail.com> r=wurblzap r=justdave a=LpSolit
Diffstat (limited to 'Bugzilla/Bug.pm')
-rw-r--r--Bugzilla/Bug.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm
index d82b6f6e6..93035dbf2 100644
--- a/Bugzilla/Bug.pm
+++ b/Bugzilla/Bug.pm
@@ -1024,7 +1024,9 @@ sub _check_bug_status {
}
else {
# A user with no privs cannot choose the initial status.
- $new_status = $valid_statuses[0];
+ # 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];
}
}
# Time to validate the bug status.