diff options
author | gerv%gerv.net <> | 2002-04-06 04:03:06 +0000 |
---|---|---|
committer | gerv%gerv.net <> | 2002-04-06 04:03:06 +0000 |
commit | 53ebea8e40ed58dae86f11ef17da737143f550ab (patch) | |
tree | 8b299758d57cc333c1788b35fab902f49e426581 /template/default/global | |
parent | 181d044266e61ffa073d1aa7ba252e812ac03c65 (diff) | |
download | bugs-53ebea8e40ed58dae86f11ef17da737143f550ab.tar bugs-53ebea8e40ed58dae86f11ef17da737143f550ab.tar.gz bugs-53ebea8e40ed58dae86f11ef17da737143f550ab.tar.bz2 bugs-53ebea8e40ed58dae86f11ef17da737143f550ab.tar.xz bugs-53ebea8e40ed58dae86f11ef17da737143f550ab.zip |
Bug 126456 - fix our error handling. Change the name of the functions to something more sane; a few enhancements. Patch by gerv, 2xr=myk.
Diffstat (limited to 'template/default/global')
-rw-r--r-- | template/default/global/code-error.html.tmpl | 24 |
1 files changed, 15 insertions, 9 deletions
diff --git a/template/default/global/code-error.html.tmpl b/template/default/global/code-error.html.tmpl index 47987729a..9f1fe2964 100644 --- a/template/default/global/code-error.html.tmpl +++ b/template/default/global/code-error.html.tmpl @@ -23,13 +23,17 @@ [% INCLUDE global/header %] [% END %] - <p> - <tt> - Bugzilla has suffered an internal error. Please save this page and send - it, and its URL, to [% Param("maintainer") %], with details of what you - were doing at the time this message appeared. - </tt> - </p> +<tt> + <p> + Bugzilla has suffered an internal error. Please save this page and send + it to [% Param("maintainer") %] with details of what you were doing at + the time this message appeared. + </p> + <script> <!-- + document.write("<p>URL: " + document.location + "</p>"); + // --> + </script> +</tt> <table cellpadding="20"> <tr> @@ -41,11 +45,13 @@ </tr> </table> -<pre> +[% IF variables %] + <pre> Variables: [% FOREACH key = variables.keys %] [%+ key %]: [%+ variables.$key %] [% END %] -</pre> + </pre> +[% END %] [% INCLUDE global/footer %] |