diff options
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/global/code-error.html.tmpl | 5 | ||||
-rw-r--r-- | template/en/default/pages/linked.html.tmpl | 6 |
2 files changed, 2 insertions, 9 deletions
diff --git a/template/en/default/global/code-error.html.tmpl b/template/en/default/global/code-error.html.tmpl index c5233b8e8..342d67102 100644 --- a/template/en/default/global/code-error.html.tmpl +++ b/template/en/default/global/code-error.html.tmpl @@ -56,11 +56,6 @@ [% ELSIF error == "authres_unhandled" %] An authorization handler return value was not handled by the login code. - [% ELSIF error == "bad_page_cgi_id" %] - [% title = "Invalid Page ID" %] - The ID <code>[% page_id FILTER html %]</code> is not a - valid page identifier. - [% ELSIF error == "bug_error" %] Trying to retrieve [% terms.bug %] [%+ bug.bug_id FILTER html %] returned the error [% bug.error FILTER html %]. diff --git a/template/en/default/pages/linked.html.tmpl b/template/en/default/pages/linked.html.tmpl index fcb5ee9d0..2a3521a35 100644 --- a/template/en/default/pages/linked.html.tmpl +++ b/template/en/default/pages/linked.html.tmpl @@ -21,8 +21,6 @@ #%] [% INCLUDE global/header.html.tmpl title = "Your Linkified Text" %] -[% USE Bugzilla %] -[% cgi = Bugzilla.cgi %] <p> Copy and paste the text below: @@ -32,7 +30,7 @@ <p> <pre> -[%- cgi.param("text") FILTER quoteUrls FILTER html -%] +[%- form.text FILTER quoteUrls FILTER html -%] </pre> </p> @@ -47,7 +45,7 @@ <p> <pre> -[%- cgi.param("text") FILTER quoteUrls -%] +[%- form.text FILTER quoteUrls -%] </pre> </p> |