Closed
Bug 139475
Opened 23 years ago
Closed 23 years ago
Edit Product: UNCONFIRMED status as standard begining status of the bugs
Categories
(Bugzilla :: Documentation, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: g.pancaldi, Assigned: bz)
Details
Edit Product:UNCONFIRMED state as standard begining status of the bugs.
I want to confugure Bugzilla so that when a reporter add a Bug, in the main
Interface will always showed the status "unconfirmed" .... what have I to do? I
try to do it but couldn't ... is it a bug or is there a way ?
Comment 1•23 years ago
|
||
This is covered in section 4.3.5 in the docs, except that the docs are wrong.
In order to have new bugs show up as UNCONFIRMED, you need to enable voting. If
you set the "number of votes needed to move a bug out of UNCONFIRMED" to
something higher than 0 then new bugs will be UNCONFIRMED.
Assignee: justdave → mbarnson
Component: Administration → Documentation
OS: Windows 2000 → All
Hardware: PC → All
Target Milestone: --- → Bugzilla 2.16
it's not so simple ... As reporter I have always a "Enter-Bug-Site" where the
initial status is on new configured. The reporte have to change this status on
new... I want that this status appear to the reporter as unconfirmed... That
is my problem :-) Thank you :-)
Comment 3•23 years ago
|
||
Right. In the latest Bugzilla, this means you just need to change the template
template/en/default/bug/create/create.html.tmpl
Find these lines:
[% IF bug_status.size > 1 %]
<tr>
[% sel = { description => 'Initial State', name => 'bug_status' } %]
[% INCLUDE select %]
and change to:
[% IF bug_status.size > 1 %]
<tr>
[% sel = { description => 'Initial State', name => 'bug_status' } %]
[% default.bug_status = "NEW" %]
[% INCLUDE select %]
and you're done :-)
Gerv
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → WORKSFORME
Comment 5•23 years ago
|
||
clearing target milestone on invalid/duplicate/worksforme/wontfix bugs so
they'll show up as untriaged if they get reopened.
Target Milestone: Bugzilla 2.16 → ---
Updated•12 years ago
|
QA Contact: matty_is_a_geek → default-qa
You need to log in
before you can comment on or make changes to this bug.
Description
•