Author: cfinck Date: Tue Oct 9 01:26:06 2007 New Revision: 29461
URL: http://svn.reactos.org/svn/reactos?rev=29461&view=rev Log: Force the initial state of bugs to be UNCONFIRMED. After this update has been applied to the Web server, the new workflow for our Bugzilla will be UNCONFIRMED --> NEW --> ASSIGNED --> RESOLVED.
If you want to try this yourself, please note that "usevotes" needs to be enabled in the Bugzilla Parameters and all products need "Confirmation threshold" set to 1.
Modified: trunk/web/reactos.org/htdocs/bugzilla/enter_bug.cgi
Modified: trunk/web/reactos.org/htdocs/bugzilla/enter_bug.cgi URL: http://svn.reactos.org/svn/reactos/trunk/web/reactos.org/htdocs/bugzilla/ent... ============================================================================== --- trunk/web/reactos.org/htdocs/bugzilla/enter_bug.cgi (original) +++ trunk/web/reactos.org/htdocs/bugzilla/enter_bug.cgi Tue Oct 9 01:26:06 2007 @@ -486,15 +486,7 @@ # to let them mark bugs as ASSIGNED)
my @status; -if ($has_editbugs || $has_canconfirm) { - @status = ('NEW', 'ASSIGNED'); -} -elsif (!$product->votes_to_confirm) { - @status = ('NEW'); -} -if ($product->votes_to_confirm) { - push(@status, 'UNCONFIRMED'); -} +@status = ('UNCONFIRMED');
$vars->{'bug_status'} = @status;