From a41ac397cb8755475aaeb9221f5de94b90f3df75 Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Sat, 11 Jun 2005 02:11:46 +0000 Subject: Bug 296214: Add a hook into user-error.html.tmpl to allow user-extendable error messages - Patch by Dennis Melentyev r=joel a=myk --- template/en/default/global/user-error.html.tmpl | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'template/en/default/global/user-error.html.tmpl') diff --git a/template/en/default/global/user-error.html.tmpl b/template/en/default/global/user-error.html.tmpl index 1aa55be58..3d7599711 100644 --- a/template/en/default/global/user-error.html.tmpl +++ b/template/en/default/global/user-error.html.tmpl @@ -31,6 +31,12 @@ # # Note that you must explicitly filter every single template variable # in this file; if you do not wish to change it, use the "none" filter. + # + # Extension- or custom-specific error handling can be easily added + # via hooks: just place your -errors.html.tmpl into + # template/en/extension/hook/global/user-error.html.tmpl/errors/ + # Note: be aware of uniqueness of error string parameter value, since + # nobody can guarantee the hook files processing order in the future #%] [% PROCESS global/variables.none.tmpl %] @@ -1111,10 +1117,18 @@ The file you are trying to attach is empty! [% ELSE %] - [% title = "Error string not found" %] - The user error string [% error FILTER html %] was not found. - Please send email to [% Param("maintainer") %] describing the steps taken - to obtain this message. + + [%# Try to find hooked error messages %] + [% error_message = Hook.process("errors") %] + + [% IF not error_message %] + [% title = "Error string not found" %] + The user error string [% error FILTER html %] was not found. + Please send email to [% Param("maintainer") %] describing the steps taken + to obtain this message. + [% ELSE %] + [% error_message FILTER none %] + [% END %] [% END %] [% END %] -- cgit v1.2.3-24-g4f1b