summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2013-10-11 23:42:22 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2013-10-11 23:42:22 +0200
commitc88c3c0a5582284e5f72252b4742eebb5a1c895a (patch)
tree3ac6b095e4a27031fdca06b2148510b5e0b90ad3 /template
parent2516718aec9fe1a005f15e99b459ca092d0f9970 (diff)
downloadbugzilla-c88c3c0a5582284e5f72252b4742eebb5a1c895a.tar.gz
bugzilla-c88c3c0a5582284e5f72252b4742eebb5a1c895a.tar.xz
Fixes on checkin for bug 769134
Diffstat (limited to 'template')
-rw-r--r--template/en/default/bug/process/verify-new-product.html.tmpl12
1 files changed, 4 insertions, 8 deletions
diff --git a/template/en/default/bug/process/verify-new-product.html.tmpl b/template/en/default/bug/process/verify-new-product.html.tmpl
index c712ae09a..a1a9539f2 100644
--- a/template/en/default/bug/process/verify-new-product.html.tmpl
+++ b/template/en/default/bug/process/verify-new-product.html.tmpl
@@ -141,7 +141,6 @@
<p>These groups are optional. You can decide to restrict [% terms.bugs %] to
one or more of the following groups:<br>
[% IF multiple_bugs %]
- [% USE Bugzilla %]
<script type="text/javascript">
function turn_off(myself, id) {
var other_checkbox = document.getElementById(id);
@@ -161,27 +160,24 @@
[% FOREACH group = optional_groups %]
<tr>
<td align="center">
- <input type="checkbox" name="defined_groups"
+ <input type="checkbox" name="defined_groups"
id="defined_group_[% group.group.id FILTER html %]"
value="[% group.group.name FILTER html %]"
- [% IF Bugzilla.cgi.param("defined_groups").contains(group.group.name) %] checked="checked"[% END %]
+ [% IF cgi.param("defined_groups").contains(group.group.name) %] checked="checked"[% END %]
onchange="turn_off(this, 'group_[% group.group.id FILTER html %]')">
</td>
<td align="center">
- <input type="checkbox" name="groups"
+ <input type="checkbox" name="groups"
id="group_[% group.group.id FILTER html %]"
value="[% group.group.name FILTER html %]"
- [% IF Bugzilla.cgi.param("groups").contains(group.group.name) %] checked="checked"[% END %]
+ [% IF cgi.param("groups").contains(group.group.name) %] checked="checked"[% END %]
onchange="turn_off(this, 'defined_group_[% group.group.id FILTER html %]')">
</td>
-
<td>
[% group.group.description FILTER html %]
</td>
-
</tr>
[% END %]
-
</table>
[% ELSE %]
[% FOREACH group = optional_groups %]