summaryrefslogtreecommitdiffstats
path: root/request.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'request.cgi')
-rwxr-xr-xrequest.cgi11
1 files changed, 10 insertions, 1 deletions
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;