diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-30 00:54:30 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2014-10-30 00:54:30 +0100 |
commit | fc62fd4082c76068c2062f4e50b88c0908db2be2 (patch) | |
tree | d4f12a208e3cffccfec0072f3d8a4b99dcae033e /template/en | |
parent | a3e9de58fe28268f0168af88cd6d69ae15e1e8c9 (diff) | |
download | bugs-fc62fd4082c76068c2062f4e50b88c0908db2be2.tar bugs-fc62fd4082c76068c2062f4e50b88c0908db2be2.tar.gz bugs-fc62fd4082c76068c2062f4e50b88c0908db2be2.tar.bz2 bugs-fc62fd4082c76068c2062f4e50b88c0908db2be2.tar.xz bugs-fc62fd4082c76068c2062f4e50b88c0908db2be2.zip |
'cgi' is not defined in templates, see bug 913364
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/global/choose-classification.html.tmpl | 4 | ||||
-rw-r--r-- | template/en/default/global/choose-product.html.tmpl | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/template/en/default/global/choose-classification.html.tmpl b/template/en/default/global/choose-classification.html.tmpl index 815e625a6..8433380ea 100644 --- a/template/en/default/global/choose-classification.html.tmpl +++ b/template/en/default/global/choose-classification.html.tmpl @@ -19,7 +19,9 @@ [% DEFAULT title = "Choose the classification" %] [% PROCESS global/header.html.tmpl %] -[% previous_params = cgi.canonicalise_query('classification') %] +[% USE Bugzilla %] +[% previous_params = Bugzilla.cgi.canonicalise_query('classification') %] + <h2>First, you must pick a classification on which to enter [% terms.abug %]:</h2> <table id="choose_classification"> <tr> diff --git a/template/en/default/global/choose-product.html.tmpl b/template/en/default/global/choose-product.html.tmpl index 5dc619087..7349d1ced 100644 --- a/template/en/default/global/choose-product.html.tmpl +++ b/template/en/default/global/choose-product.html.tmpl @@ -28,7 +28,9 @@ [% DEFAULT title = "Choose a Product" %] [% PROCESS global/header.html.tmpl %] -[% previous_params = cgi.canonicalise_query('classification', 'product') %] +[% USE Bugzilla %] +[% previous_params = Bugzilla.cgi.canonicalise_query('classification', 'product') %] + <h2>[% h2 FILTER html %]</h2> <table id="choose_product"> |