diff options
author | Erik Abele <erikabele@apache.org> | 2002-08-25 00:25:16 +0200 |
---|---|---|
committer | Erik Abele <erikabele@apache.org> | 2002-08-25 00:25:16 +0200 |
commit | 7b48ee1840b7173ae6910973b1e7b001fdf5558a (patch) | |
tree | 91f315779316233614c164668979a56d64725f7f /docs/error/include | |
parent | Fix a null pointer dereference in the merge_env_dir_configs function of (diff) | |
download | apache2-7b48ee1840b7173ae6910973b1e7b001fdf5558a.tar.xz apache2-7b48ee1840b7173ae6910973b1e7b001fdf5558a.zip |
Added encoding="none" for the ssi-output of REDIRECT_ERROR_NOTES.
This fixes the output of HTML-tags through the above env-var (e.g.
<p> instead of <p>).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96524 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/error/include')
-rw-r--r-- | docs/error/include/top.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/error/include/top.html b/docs/error/include/top.html index ec25b8adbc..7f69e5815c 100644 --- a/docs/error/include/top.html +++ b/docs/error/include/top.html @@ -4,10 +4,10 @@ <!--#if expr="! $CHARACTER_ENCODING" --> <!--#set var="CHARACTER_ENCODING" value="ISO-8859-1" --> <!--#endif --> -<?xml version="1.0" encoding="<!--#echo var="CHARACTER_ENCODING" -->"?> +<?xml version="1.0" encoding="<!--#echo encoding="none" var="CHARACTER_ENCODING" -->"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<!--#echo var="CONTENT_LANGUAGE" -->"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<!--#echo encoding="none" var="CONTENT_LANGUAGE" -->"> <head> <title><!--#echo var="TITLE" --></title> <link rev="made" href="mailto:<!--#echo encoding="none" var="SERVER_ADMIN" -->" /> |