From 5c2713ecfe18ee9a5cad6ee677fb8bdfe4472faa Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Mon, 26 Nov 2007 03:45:04 +0000 Subject: Bug 405342: "My requests" is broken - Patch by Frédéric Buclin r=bkor a=LpSolit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- request.cgi | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'request.cgi') diff --git a/request.cgi b/request.cgi index 6c3ff48ee..c854a1767 100755 --- a/request.cgi +++ b/request.cgi @@ -42,6 +42,7 @@ use Bugzilla::Component; # Make sure the user is logged in. my $user = Bugzilla->login(); my $cgi = Bugzilla->cgi; +my $dbh = Bugzilla->dbh; my $template = Bugzilla->template; my $action = $cgi->param('action') || ''; @@ -67,7 +68,15 @@ if ($action eq 'queue') { queue(); } else { - $template->process('request/queue.html.tmpl', {requests => {}}) + my $flagtypes = $dbh->selectcol_arrayref('SELECT DISTINCT(name) FROM flagtypes + ORDER BY name'); + my @types = ('all', @$flagtypes); + + my $vars = {}; + $vars->{'products'} = $user->get_selectable_products; + $vars->{'types'} = \@types; + $vars->{'requests'} = {}; + $template->process('request/queue.html.tmpl', $vars) || ThrowTemplateError($template->error()); } exit; -- cgit v1.2.3-24-g4f1b