From 1649198d3c217952f5eeb5a94bd13a42891a2386 Mon Sep 17 00:00:00 2001 From: "ghendricks%novell.com" <> Date: Wed, 13 Jun 2007 01:20:05 +0000 Subject: Bug 383520 – Need to hook code-error.html.tmpl Patch by ghendricks r=mkanat a=mkanat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- template/en/default/global/code-error.html.tmpl | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'template') diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index 760d81043..722173bde 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -426,12 +426,18 @@ Invalid setting for post_bug_submit_action [% ELSE %] - [% title = "Internal error" %] - An internal error has occurred, but [% terms.Bugzilla %] doesn't know - what [% error FILTER html %] means. - - If you are a [% terms.Bugzilla %] end-user seeing this message, please save - this page and send it to [% Param('maintainer') %]. + [%# Try to find hooked error messages %] + [% error_message = Hook.process("errors") %] + [% IF NOT error_message %] + [% title = "Internal error" %] + An internal error has occurred, but [% terms.Bugzilla %] doesn't know + what [% error FILTER html %] means. + + If you are a [% terms.Bugzilla %] end-user seeing this message, please save + this page and send it to [% Param('maintainer') %]. + [% ELSE %] + [% error_message FILTER none %] + [% END %] [% END %] [% END %] -- cgit v1.2.3-24-g4f1b