summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/process/verify-new-product.html.tmpl
diff options
context:
space:
mode:
authormyk%mozilla.org <>2002-06-04 07:31:08 +0200
committermyk%mozilla.org <>2002-06-04 07:31:08 +0200
commit92c42f457c526f0d45ef6ce505cd89edbee9b14d (patch)
tree8fcafef7362afbc06b3520bbc9b5558855dca45f /template/en/default/bug/process/verify-new-product.html.tmpl
parentece5d5c0aff51c2cf11648fe5d184c6b36cbe96b (diff)
downloadbugzilla-92c42f457c526f0d45ef6ce505cd89edbee9b14d.tar.gz
bugzilla-92c42f457c526f0d45ef6ce505cd89edbee9b14d.tar.xz
Fix for bug 145030: Removes use of CGI.pm from Template Toolkit until problems with it can be investigated and resolved.
r=jouni,gerv
Diffstat (limited to 'template/en/default/bug/process/verify-new-product.html.tmpl')
-rw-r--r--template/en/default/bug/process/verify-new-product.html.tmpl8
1 files changed, 3 insertions, 5 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 4facc45c8..8a934f8e7 100644
--- a/template/en/default/bug/process/verify-new-product.html.tmpl
+++ b/template/en/default/bug/process/verify-new-product.html.tmpl
@@ -32,8 +32,6 @@
# the target milestone field
#%]
-[% USE mycgi = CGI %]
-
<form action="process_bug.cgi" method="post">
[% PROCESS "global/hidden-fields.html.tmpl"
@@ -59,16 +57,16 @@
<tr>
<td>
<b>Version:</b><br>
- [% mycgi.popup_menu(Name => "version" , Values => versions) %]
+ [% PROCESS "global/select-menu.html.tmpl" name="version" options=versions %]
</td>
<td>
<b>Component:</b><br>
- [% mycgi.popup_menu(Name => "component" , Values => components) %]
+ [% PROCESS "global/select-menu.html.tmpl" name="component" options=components %]
</td>
[% IF use_target_milestone %]
<td>
<b>Target Milestone:</b><br>
- [% mycgi.popup_menu(Name => "target_milestone" , Values => milestones) %]
+ [% PROCESS "global/select-menu.html.tmpl" name="target_milestone" options=milestones %]
</td>
[% END %]
</tr>