From 0bc5225c57353027b13af1397b564d1e713e28f1 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sat, 30 Aug 2008 02:41:57 +0000 Subject: 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 r=wurblzap r=justdave a=LpSolit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Bugzilla/Bug.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Bugzilla/Bug.pm') 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. -- cgit v1.2.3-24-g4f1b