diff options
author | Daniel Gruno <humbedooh@apache.org> | 2012-07-13 13:16:01 +0200 |
---|---|---|
committer | Daniel Gruno <humbedooh@apache.org> | 2012-07-13 13:16:01 +0200 |
commit | 52510a70cf8f969fa9d59cea81f290caf59b91e9 (patch) | |
tree | d00766d5cf0ee44649b5cb577c11e423e7acc075 /docs/manual/custom-error.html.en | |
parent | Add printf as a known function in Perl. (diff) | |
download | apache2-52510a70cf8f969fa9d59cea81f290caf59b91e9.tar.xz apache2-52510a70cf8f969fa9d59cea81f290caf59b91e9.zip |
xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1361159 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/custom-error.html.en')
-rw-r--r-- | docs/manual/custom-error.html.en | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/manual/custom-error.html.en b/docs/manual/custom-error.html.en index 18bb2e7c08..23bdb33b24 100644 --- a/docs/manual/custom-error.html.en +++ b/docs/manual/custom-error.html.en @@ -157,10 +157,10 @@ ErrorDocument 401 /subscription/how_to_subscribe.html script might include the following:</p> <pre class="prettyprint lang-perl"> - ... - print "Content-type: text/html\n"; <br /> - printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"}; <br /> - ... +... +print "Content-type: text/html\n"; <br /> +printf "Status: %s Condition Intercepted\n", $ENV{"REDIRECT_STATUS"}; <br /> +... </pre> |