summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Sentry.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/Bugzilla/Sentry.pm b/Bugzilla/Sentry.pm
index e9dedc8dd..d49eb0808 100644
--- a/Bugzilla/Sentry.pm
+++ b/Bugzilla/Sentry.pm
@@ -332,7 +332,12 @@ sub _sentry_die_handler {
# if we are called via CGI::Carp::die chances are something is seriously
# wrong, so skip trying to use ThrowTemplateError
if (!$in_cgi_carp_die && !$is_compilation_failure) {
- eval { Bugzilla::Error::ThrowTemplateError($message) };
+ eval {
+ my $cgi = Bugzilla->cgi;
+ $cgi->close_standby_message('text/html', 'inline', 'error', 'html');
+ Bugzilla::Error::ThrowTemplateError($message);
+ print $cgi->multipart_final() if $cgi->{_multipart_in_progress};
+ };
$nested_error = $@ if $@;
}