diff options
author | lpsolit%gmail.com <> | 2007-09-19 04:37:11 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-09-19 04:37:11 +0200 |
commit | af4793c884c6f3eb9dff8a79865f6cfa690aa9ec (patch) | |
tree | b6a4dc9b3877bcc8ede8e77a5f2b6b76bff2c9e2 /process_bug.cgi | |
parent | c14f288a695d51b368e84107199843b330e1252b (diff) | |
download | bugzilla-af4793c884c6f3eb9dff8a79865f6cfa690aa9ec.tar.gz bugzilla-af4793c884c6f3eb9dff8a79865f6cfa690aa9ec.tar.xz |
Bug 389313: summarize_time.cgi needs some cleanup - Patch by Frédéric Buclin <LpSolit@gmail.com> r/a=mkanat
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index ae7eb23be..0d76a5c70 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -152,7 +152,7 @@ if (defined $cgi->param('id')) { } # Make sure there are bugs to process. -scalar(@idlist) || ThrowUserError("no_bugs_chosen"); +scalar(@idlist) || ThrowUserError("no_bugs_chosen", {action => 'modify'}); # Build a bug object using the first bug id, for validations. my $bug = $bug_objects[0]; |