From 4b4188d7a08098c963183e47d68554545744c483 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Sat, 6 Mar 2004 16:54:17 +0000 Subject: Patch for bug 236019; make request.cgi use $cgi->param instead of %::FORM; r=kiko, a=justdave. --- template/en/default/request/queue.html.tmpl | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) (limited to 'template/en/default/request') diff --git a/template/en/default/request/queue.html.tmpl b/template/en/default/request/queue.html.tmpl index c509324ed..0eb3f21cd 100644 --- a/template/en/default/request/queue.html.tmpl +++ b/template/en/default/request/queue.html.tmpl @@ -21,6 +21,9 @@ [% PROCESS global/variables.none.tmpl %] +[% USE Bugzilla %] +[% cgi = Bugzilla.cgi %] + [%# The javascript and header_html blocks get used in header.html.tmpl. %] [% javascript = BLOCK %] var usetms = 0; // do we have target milestone? @@ -44,14 +47,14 @@ - + @@ -60,7 +63,7 @@ [% PROCESS "global/select-menu.html.tmpl" name="type" options=types - default=form.type %] + default=cgi.param('type') %] [%# We could let people see a "queue" of non-pending requests. %] @@ -70,20 +73,20 @@ [%# PROCESS "global/select-menu.html.tmpl" name="status" options=["all", "?", "+-", "+", "-"] - default=form.status %] + default=cgi.param('status') %] --> - + -- cgit v1.2.3-24-g4f1b
Requester: Product:
Requestee: Component: @@ -96,7 +99,7 @@ "Flag" => 'type' , "Product/Component" => 'category' } %] - [% PROCESS "global/select-menu.html.tmpl" name="group" options=groups default=form.group %] + [% PROCESS "global/select-menu.html.tmpl" name="group" options=groups default=cgi.param('group') %]