summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Error.pm
diff options
context:
space:
mode:
authorbugreport%peshkin.net <>2004-11-08 11:25:58 +0100
committerbugreport%peshkin.net <>2004-11-08 11:25:58 +0100
commit7ab8441582a6b9ce1b2335762948662b38aaf217 (patch)
tree2b6e3430cf432480102664b43dbc6b3416817e59 /Bugzilla/Error.pm
parent1f389b9186fb57c781c59fdf38caa45e69912324 (diff)
downloadbugzilla-7ab8441582a6b9ce1b2335762948662b38aaf217.tar.gz
bugzilla-7ab8441582a6b9ce1b2335762948662b38aaf217.tar.xz
Bug 257344: Remove exit from error handlers when non-interactive
r=glob,justdave a=justdave
Diffstat (limited to 'Bugzilla/Error.pm')
-rw-r--r--Bugzilla/Error.pm18
1 files changed, 13 insertions, 5 deletions
diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm
index 25527f599..00a2675eb 100644
--- a/Bugzilla/Error.pm
+++ b/Bugzilla/Error.pm
@@ -69,12 +69,17 @@ sub _throw_error {
close ERRORLOGFID;
}
- print Bugzilla->cgi->header();
-
my $template = Bugzilla->template;
- $template->process($name, $vars)
- || ThrowTemplateError($template->error());
-
+ if (Bugzilla->batch) {
+ my $message;
+ $template->process($name, $vars, \$message)
+ || ThrowTemplateError($template->error());
+ die("$message");
+ } else {
+ print Bugzilla->cgi->header();
+ $template->process($name, $vars)
+ || ThrowTemplateError($template->error());
+ }
exit;
}
@@ -90,6 +95,9 @@ sub ThrowTemplateError {
my ($template_err) = @_;
my $vars = {};
+ if (Bugzilla->batch) {
+ die("error: template error: $template_err");
+ }
$vars->{'template_error_msg'} = $template_err;
$vars->{'error'} = "template_error";