Closed
Bug 118598
Opened 23 years ago
Closed 22 years ago
Create new templates for b.m.o preventing resolution of REMIND/LATER
Categories
(bugzilla.mozilla.org :: General, defect)
bugzilla.mozilla.org
General
Tracking
()
RESOLVED
FIXED
People
(Reporter: caillon, Assigned: endico)
References
Details
Once bug 110012 is fixed, b.m.o should prevent resolving a bug as LATER or
REMIND by creating a new template. This will in turn fix bug 83129, and if the
template is offered as a separate download as an add-on to Bugzilla, it will
also act as a temporary workaround for bug 13534.
To fix this, all we need to do in the show_bug.tmpl template file take:
+ [% FOREACH r = resolution %]
+ <option value="[% r %]">[% r %]</option>
and turn it into static HTML:
<option value="FIXED">FIXED</option>
<option value="INVALID">INVALID</option>
<option value="WONTFIX">WONTFIX</option>
<option value="WORKSFORME">WORKSFORME</option>
Reporter | ||
Updated•23 years ago
|
Reporter | ||
Comment 1•23 years ago
|
||
whoops, I missed a line to [% END %] the foreach :)
Comment 2•23 years ago
|
||
If we do this we should open another moz.org bug to remove the hack when bug
#94534 lands on bmo.
Comment 3•23 years ago
|
||
This bug could now be fixed; though you probably don't want to yet, in case
show_bug.cgi gets fixed more (e.g. by bug 109029).
Better to do
[% FOREACH r = resolution %]
[% UNLESS r == "REMIND" OR r == "LATER" %]
<option value="[% r %]">[% r %]</option>
It's a bit safer than hardcoding the list.
Gerv
Comment 4•22 years ago
|
||
Fixed on the Bugzilla staging installation, due to become the main Bugzilla
installation real soon now...
http://mothra.mozilla.org/webtools/bugzilla-test/
Reporter | ||
Comment 5•22 years ago
|
||
This appears to be fixed (thanks!).
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
Updated•13 years ago
|
Component: Bugzilla: Other b.m.o Issues → General
Product: mozilla.org → bugzilla.mozilla.org
You need to log in
before you can comment on or make changes to this bug.
Description
•