summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/process/verify-new-product.html.tmpl
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-04-08 09:45:47 +0200
committerlpsolit%gmail.com <>2005-04-08 09:45:47 +0200
commitcfda9d97c4b9281f9fec36611dbd96ceaa10f633 (patch)
tree08bd70fcbc922f3a0f186dd47b87b17401a8952c /template/en/default/bug/process/verify-new-product.html.tmpl
parent7c03ca4cc9a029997a4041c2c5b5eb91d4d2d0b8 (diff)
downloadbugzilla-cfda9d97c4b9281f9fec36611dbd96ceaa10f633.tar.gz
bugzilla-cfda9d97c4b9281f9fec36611dbd96ceaa10f633.tar.xz
Bug 238876: remove %FORM from process_bug.cgi - Patch by Teemu Mannermaa <wicked@etlicon.fi> r=LpSolit a=justdave
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.tmpl10
1 files changed, 6 insertions, 4 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 33acceebe..a83430079 100644
--- a/template/en/default/bug/process/verify-new-product.html.tmpl
+++ b/template/en/default/bug/process/verify-new-product.html.tmpl
@@ -20,8 +20,6 @@
#%]
[%# INTERFACE:
- # form: hash; the form values submitted to the script
- # mform: hash; the form multi-values submitted to the script
# verify_fields: boolean; whether or not to verify
# the version, component, and target milestone fields
# versions: array; versions for the new product.
@@ -35,6 +33,10 @@
# the target milestone field
#%]
+[%# The global Bugzilla->cgi object is used to obtain form variable values. %]
+[% USE Bugzilla %]
+[% cgi = Bugzilla.cgi %]
+
[% PROCESS global/variables.none.tmpl %]
[% PROCESS global/header.html.tmpl %]
@@ -51,12 +53,12 @@
<p>
[% IF use_target_milestone %]
You are moving the [% terms.bug %](s) to the product
- <b>[% form.product FILTER html %]</b>,
+ <b>[% cgi.param("product") FILTER html %]</b>,
and the version, component, and/or target milestone fields are no longer
correct. Please set the correct version, component, and target milestone now:
[% ELSE %]
You are moving the [% terms.bug %](s) to the product
- <b>[% form.product FILTER html %]</b>,
+ <b>[% cgi.param("product") FILTER html %]</b>,
and the version and component fields are no longer correct.
Please set the correct version and component now:
[% END %]