From: Rich Bowen Date: Wed, 9 May 2012 01:56:07 +0000 (+0000) Subject: Rebuild X-Git-Tag: 2.5.0-alpha~6857 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b59019da08ffb1c9072203e0275ccab71f17f95d;p=thirdparty%2Fapache%2Fhttpd.git Rebuild git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1335893 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/cgi.html.en b/docs/manual/howto/cgi.html.en index 5380b659721..e72b50bff3f 100644 --- a/docs/manual/howto/cgi.html.en +++ b/docs/manual/howto/cgi.html.en @@ -483,8 +483,11 @@ print "Hello, World.";
 #!/usr/bin/perl
+use strict;
+use warnings;
+
 print "Content-type: text/html\n\n";
-foreach $key (keys %ENV) {
+foreach my $key (keys %ENV) {
     print "$key --> $ENV{$key}<br>";
 }
       
diff --git a/docs/manual/howto/cgi.html.fr b/docs/manual/howto/cgi.html.fr index 0f3e726dd1c..a04f325dc47 100644 --- a/docs/manual/howto/cgi.html.fr +++ b/docs/manual/howto/cgi.html.fr @@ -26,6 +26,8 @@  ja  |  ko 

+
Cette traduction peut être périmée. Vérifiez la version + anglaise pour les changements récents.