From 744c9568e8b024cbf4ce7742090525290db3add2 Mon Sep 17 00:00:00 2001 From: Richard Bowen Date: Wed, 9 May 2012 13:29:27 +0000 Subject: [PATCH] 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 --- docs/manual/howto/cgi.html.en | 4 ++-- docs/manual/howto/cgi.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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>"; } -- 2.47.3