diff options
author | bbaetz%student.usyd.edu.au <> | 2002-03-26 22:15:16 +0100 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-03-26 22:15:16 +0100 |
commit | 1b9dcfcce39766feb87abd22a9c77acb534dfd81 (patch) | |
tree | 337875a196ae7ca0e4e8f4ce053e530c96c1d208 /template | |
parent | 10472d3d62fee16af1be694586e16a4a62b3152d (diff) | |
download | bugzilla-1b9dcfcce39766feb87abd22a9c77acb534dfd81.tar.gz bugzilla-1b9dcfcce39766feb87abd22a9c77acb534dfd81.tar.xz |
Bug 133200 - mass change removes dependancies. r=afranke, justdave
Bug 133206 - mass change uses 'severity' rather than 'bug_severity'. Patch
by zeroJ@null.net (John Vandenberg), r=bbaetz x2
Bug 133207 - mass confirming bugs fails. r=afranke x2
Diffstat (limited to 'template')
-rw-r--r-- | template/default/buglist/change-form.tmpl | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/template/default/buglist/change-form.tmpl b/template/default/buglist/change-form.tmpl index 8498a0ab8..8bec88c3e 100644 --- a/template/default/buglist/change-form.tmpl +++ b/template/default/buglist/change-form.tmpl @@ -92,12 +92,12 @@ </td> <th> - <label for="severity"> + <label for="bug_severity"> <a href="bug_status.html#severity">Severity:</a> </label> </th> <td> - [% PROCESS selectmenu menuname = "severity" + [% PROCESS selectmenu menuname = "bug_severity" menuitems = severities %] </td> @@ -157,30 +157,6 @@ </tr> [% END %] - <tr> - <th>Depends on:</th> - <td colspan="3"> - <input id="dependson" name="dependson" size="32"> - <select name="dependsonaction"> - <option value="add">Add these dependencies</option> - <option value="delete">Remove these dependencies</option> - <option value="makeexact">Make the dependencies be exactly this list</option> - </select> - </td> - </tr> - - <tr> - <th>Blocks:</th> - <td colspan="3"> - <input id="blocked" name="blocked" size="32"> - <select name="blockedaction"> - <option value="add">Add these dependencies</option> - <option value="delete">Remove these dependencies</option> - <option value="makeexact">Make the dependencies be exactly this list</option> - </select> - </td> - </tr> - </table> <input type="hidden" name="multiupdate" value="Y"> @@ -244,7 +220,7 @@ [% IF bugstatuses.size == 1 && bugstatuses.0 == unconfirmedstate %] [% knum = knum + 1 %] - <input id="knob-confirm" type="radio" name="knob" value="confirm> + <input id="knob-confirm" type="radio" name="knob" value="confirm"> <label for="knob-confirm"> Confirm bugs (change status to <b>NEW</b>) </label><br /> |