diff options
author | bbaetz%student.usyd.edu.au <> | 2002-10-26 10:56:55 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-10-26 10:56:55 +0200 |
commit | 818ce46d9780c7a04ac04a3f116021f1edadd476 (patch) | |
tree | 37a73f7a26876a5690ca7f477c10ee3979689b07 /template/en/default/global | |
parent | 37993682fd10962e944a1e5bf9633c7b08ad49e6 (diff) | |
download | bugzilla-818ce46d9780c7a04ac04a3f116021f1edadd476.tar.gz bugzilla-818ce46d9780c7a04ac04a3f116021f1edadd476.tar.xz |
Bug 147833 - start using CGI.pm
r=gerv, justdave
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index 1ec1c4626..baad2f5f0 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -47,6 +47,11 @@ [% ELSIF error == "attachment_already_obsolete" %] Attachment #[% attachid FILTER html %] ([% description FILTER html %]) is already obsolete. + + [% ELSIF error == "cgi_error" %] + [% title = "CGI Error" %] + Bugzilla has had trouble interpreting your CGI request; + [%+ Param('browserbugmessage') %] [% ELSIF error == "chart_data_not_generated" %] The tool which gathers bug counts has not been run yet. @@ -236,7 +241,7 @@ <pre> Variables: [% FOREACH key = variables.keys %] - [%+ key %]: [%+ variables.$key %] + [%+ key FILTER html %]: [%+ variables.$key FILTER html %] [% END %] </pre> [% END %] |