Bug 405342: "My requests" is broken - Patch by Frédéric Buclin <LpSolit@gmail.com> r=bkor a=LpSolit

git-svn-id: svn://10.0.0.236/trunk@239910 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
lpsolit%gmail.com
2007-11-25 21:45:04 +00:00
parent ae5265be01
commit 0f25866ae1
2 changed files with 11 additions and 2 deletions

View File

@@ -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;