summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Error.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Error.pm')
-rw-r--r--Bugzilla/Error.pm9
1 files changed, 2 insertions, 7 deletions
diff --git a/Bugzilla/Error.pm b/Bugzilla/Error.pm
index 927745201..fa898fba4 100644
--- a/Bugzilla/Error.pm
+++ b/Bugzilla/Error.pm
@@ -99,13 +99,8 @@ sub _throw_error {
# and calling $template->process over and over for those errors
# is too slow. So instead, we just "die" with a dump of the arguments.
if (Bugzilla->error_mode != ERROR_MODE_TEST) {
- if (Bugzilla->template->in_process) {
- $message = "error inside Bugzilla->template->process: $error";
- }
- else {
- $template->process($name, $vars, \$message)
- || ThrowTemplateError($template->error());
- }
+ $template->process($name, $vars, \$message)
+ || ThrowTemplateError($template->error());
}
# Let's call the hook first, so that extensions can override