diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2012-04-17 20:56:41 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2012-04-17 20:56:41 +0200 |
commit | 9a5a196d79ed8692c45595c4e3d42e34571bc3a7 (patch) | |
tree | 058a2aba35e324354547f7d45e504282b3eb98a5 /template | |
parent | 3b2fcf526e02c1d74f88b567083a9be371d5a607 (diff) | |
download | bugs-9a5a196d79ed8692c45595c4e3d42e34571bc3a7.tar bugs-9a5a196d79ed8692c45595c4e3d42e34571bc3a7.tar.gz bugs-9a5a196d79ed8692c45595c4e3d42e34571bc3a7.tar.bz2 bugs-9a5a196d79ed8692c45595c4e3d42e34571bc3a7.tar.xz bugs-9a5a196d79ed8692c45595c4e3d42e34571bc3a7.zip |
Bug 745197: Add a hook in Bugzilla::Error::_throw_error() so that extensions can control the way to throw errors
r=dkl a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index 4a4720b2a..19d062841 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -508,10 +508,8 @@ <table cellpadding="20"> <tr> - <td bgcolor="#ff0000"> - <font size="+2"> - [% error_message FILTER none %] - </font> + <td id="error_msg" class="throw_error"> + [% error_message FILTER none %] </td> </tr> </table> |