From: Rich Bowen Date: Wed, 9 May 2012 13:29:27 +0000 (+0000) Subject: Revert last night's change, as per nd's recommendation. X-Git-Tag: 2.5.0-alpha~6850 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5f91da1f403c51b40d17f2310aed1f0fa033051;p=thirdparty%2Fapache%2Fhttpd.git Revert last night's change, as per nd's recommendation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1336196 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/cgi.html.en b/docs/manual/howto/cgi.html.en index 03575a1c2c8..e72b50bff3f 100644 --- a/docs/manual/howto/cgi.html.en +++ b/docs/manual/howto/cgi.html.en @@ -233,7 +233,7 @@
 #!/usr/bin/perl
-print "Content-type: text/html\r\n\r\n";
+print "Content-type: text/html\n\n";
 print "Hello, World.";
       
@@ -486,7 +486,7 @@ print "Hello, World."; use strict; use warnings; -print "Content-type: text/html\r\n\r\n"; +print "Content-type: text/html\n\n"; foreach my $key (keys %ENV) { print "$key --> $ENV{$key}<br>"; } diff --git a/docs/manual/howto/cgi.xml b/docs/manual/howto/cgi.xml index cd3a17d5280..bf6f4dc6c84 100644 --- a/docs/manual/howto/cgi.xml +++ b/docs/manual/howto/cgi.xml @@ -234,7 +234,7 @@ #!/usr/bin/perl -print "Content-type: text/html\r\n\r\n"; +print "Content-type: text/html\n\n"; print "Hello, World."; @@ -488,7 +488,7 @@ print "Hello, World."; use strict; use warnings; -print "Content-type: text/html\r\n\r\n"; +print "Content-type: text/html\n\n"; foreach my $key (keys %ENV) { print "$key --> $ENV{$key}<br>"; }