summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Error.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Error.pm')
-rw-r--r--Bugzilla/Error.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm
index dcb79cfb2..d3f7c1971 100644
--- a/Bugzilla/Error.pm
+++ b/Bugzilla/Error.pm
@@ -124,7 +124,11 @@ sub _throw_error {
message => $message,
id => $server->{_bz_request_id},
version => $server->version);
- $server->response($server->error_response_header);
+ # if _bz_request_id is set, we're inside the _handle() function
+ # and we don't need to call $server->response.
+ unless ($self->{_bz_request_id}) {
+ $server->response($server->error_response_header);
+ }
}
}