diff --git a/mozilla/webtools/bugzilla/request.cgi b/mozilla/webtools/bugzilla/request.cgi index 6c3ff48eeb0..c854a176799 100755 --- a/mozilla/webtools/bugzilla/request.cgi +++ b/mozilla/webtools/bugzilla/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; diff --git a/mozilla/webtools/bugzilla/template/en/default/global/common-links.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/global/common-links.html.tmpl index 033b980695b..94fed709fd0 100644 --- a/mozilla/webtools/bugzilla/template/en/default/global/common-links.html.tmpl +++ b/mozilla/webtools/bugzilla/template/en/default/global/common-links.html.tmpl @@ -42,7 +42,7 @@ | [% IF user.id %] My Requests + [% user.login FILTER url_quote %]&do_union=1&group=type&action=queue">My Requests [% ELSE %] Requests [% END %]