Bug 402745 - Improve the error message displayed when accessing summarize_time.cgi with no bug ID

trunk
Sunil Joshi 2013-07-30 13:27:36 -04:00 committed by Dave Lawrence
parent 8bb59c3f5c
commit cb6c05ec75
2 changed files with 3 additions and 1 deletions

View File

@ -254,7 +254,7 @@ $user->is_timetracker
my @ids = split(",", $cgi->param('id') || '');
@ids = map { Bugzilla::Bug->check($_)->id } @ids;
scalar(@ids) || ThrowUserError('no_bugs_chosen', {action => 'view'});
scalar(@ids) || ThrowUserError('no_bugs_chosen', {action => 'summarize'});
my $group_by = $cgi->param('group_by') || "number";
my $monthly = $cgi->param('monthly');

View File

@ -1287,6 +1287,8 @@
to modify.
[% ELSIF action == "view" %]
to view.
[% ELSIF action == 'summarize' %]
for viewing time summaries.
[% END %]
[% ELSIF error == "no_tag_to_edit" %]