From: Ralf S. Engelschall Date: Fri, 30 Jul 1999 09:51:01 +0000 (+0000) Subject: Fix PR#4720 X-Git-Tag: mpm-merge-1~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=040a1cae85dfe960edd94b38ecf7abdbad57891b;p=thirdparty%2Fapache%2Fhttpd.git Fix PR#4720 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83537 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/misc/howto.html b/docs/manual/misc/howto.html index 88c182355ef..9ce92a41baf 100644 --- a/docs/manual/misc/howto.html +++ b/docs/manual/misc/howto.html @@ -85,8 +85,9 @@ and here's a simple perl script to redirect requests:
 #!/usr/local/bin/perl
 
-print "Status: 302 Moved Temporarily\r
-Location: http://www.some.where.else.com/\r\n\r\n";
+print "Status: 302 Moved Temporarily\r\n" .
+      "Location: http://www.some.where.else.com/\r\n" .
+      "\r\n";