summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Error.pm
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2018-06-22 06:13:25 +0200
committerDylan William Hardison <dylan@hardison.net>2018-06-28 22:42:02 +0200
commit090046b9b54c27239c742b019e3296ed51828221 (patch)
treeb0005313dcaf23497fe1c8cd5f31752f0027b00c /Bugzilla/Error.pm
parent89a8228c445ed9082a977b4bf5bdf6a23bee0427 (diff)
downloadbugzilla-090046b9b54c27239c742b019e3296ed51828221.tar.gz
bugzilla-090046b9b54c27239c742b019e3296ed51828221.tar.xz
use an explicit check for the _handle stuff
Diffstat (limited to 'Bugzilla/Error.pm')
-rw-r--r--Bugzilla/Error.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm
index cf3688292..ad195f02f 100644
--- a/Bugzilla/Error.pm
+++ b/Bugzilla/Error.pm
@@ -124,9 +124,9 @@ sub _throw_error {
message => $message,
id => $server->{_bz_request_id},
version => $server->version);
- # if _bz_request_id is set, we're inside the _handle() function
+ # if _bz_will_handle_error is set, we're inside the _handle() function
# and we don't need to call $server->response.
- unless ($server->{_bz_request_id}) {
+ unless ($server->{_bz_will_handle_error}) {
$server->response($server->error_response_header);
}
}