Commit a41ac397 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 296214: Add a hook into user-error.html.tmpl to allow user-extendable error…

Bug 296214: Add a hook into user-error.html.tmpl to allow user-extendable error messages - Patch by Dennis Melentyev <dennis.melentyev@infopulse.com.ua> r=joel a=myk
parent be7ed714
...@@ -31,6 +31,12 @@ ...@@ -31,6 +31,12 @@
# #
# Note that you must explicitly filter every single template variable # 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. # 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 <extension>-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 %] [% PROCESS global/variables.none.tmpl %]
...@@ -1111,10 +1117,18 @@ ...@@ -1111,10 +1117,18 @@
The file you are trying to attach is empty! The file you are trying to attach is empty!
[% ELSE %] [% ELSE %]
[% title = "Error string not found" %]
The user error string <code>[% error FILTER html %]</code> was not found. [%# Try to find hooked error messages %]
Please send email to [% Param("maintainer") %] describing the steps taken [% error_message = Hook.process("errors") %]
to obtain this message.
[% IF not error_message %]
[% title = "Error string not found" %]
The user error string <code>[% error FILTER html %]</code> 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 %]
[% END %] [% END %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment