diff options
author | ghendricks%novell.com <> | 2007-06-13 01:20:05 +0000 |
---|---|---|
committer | ghendricks%novell.com <> | 2007-06-13 01:20:05 +0000 |
commit | 1649198d3c217952f5eeb5a94bd13a42891a2386 (patch) | |
tree | 585f58f5cd05b94a324b0f75beb6b13a76938de6 /template | |
parent | e188b153de2ed564ac20650b534b9da5a04d4b23 (diff) | |
download | bugs-1649198d3c217952f5eeb5a94bd13a42891a2386.tar bugs-1649198d3c217952f5eeb5a94bd13a42891a2386.tar.gz bugs-1649198d3c217952f5eeb5a94bd13a42891a2386.tar.bz2 bugs-1649198d3c217952f5eeb5a94bd13a42891a2386.tar.xz bugs-1649198d3c217952f5eeb5a94bd13a42891a2386.zip |
Bug 383520 â Need to hook code-error.html.tmpl
Patch by ghendricks r=mkanat a=mkanat
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 18 |
1 files changed, 12 insertions, 6 deletions
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 <code>[% error FILTER html %]</code> 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 <code>[% error FILTER html %]</code> 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 %] |