From: Rich Bowen Date: Thu, 3 Mar 2016 01:15:38 +0000 (+0000) Subject: rebuild X-Git-Tag: 2.5.0-alpha~1964 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3d54d3b0913b190df467243156baf3b5d5cfd6e7;p=thirdparty%2Fapache%2Fhttpd.git rebuild git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1733404 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/rewrite/rewritemap.html.en b/docs/manual/rewrite/rewritemap.html.en index 3ec5962b06b..2e5a05be685 100644 --- a/docs/manual/rewrite/rewritemap.html.en +++ b/docs/manual/rewrite/rewritemap.html.en @@ -374,12 +374,12 @@ RewriteRule "-" "${d2u:%{REQUEST_URI}}"

dash2under.pl

-
    #!/usr/bin/perl
-    $| = 1; # Turn off I/O buffering
-    while (<STDIN>) {
-        s/-/_/g; # Replace dashes with underscores
-        print $_;
-    }
+
#!/usr/bin/perl
+$| = 1; # Turn off I/O buffering
+while (<STDIN>) {
+    s/-/_/g; # Replace dashes with underscores
+    print $_;
+}

Caution!