Commit fc62fd40 authored by Frédéric Buclin's avatar Frédéric Buclin

'cgi' is not defined in templates, see bug 913364

parent a3e9de58
......@@ -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>
......
......@@ -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">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment