Enclosed is a POD patch for
http://perl.apache.org/docs/2.0/user/config/custom.html#C_cmd_data_

The default function (and the one for LocationMatch) should be
Location(), not Redirect().

  Issac
--- custom.pod.orig     Mon Jan 22 12:23:11 2007
+++ custom.pod  Mon Jan 22 12:24:03 2007
@@ -298,13 +298,13 @@
   my @directives = (
       {
        name         => '<Location',
-       # func defaults to Redirect()
+       # func defaults to Location()
        req_override => Apache2::Const::RSRC_CONF,
        args_how     => Apache2::Const::RAW_ARGS,
       },
       {
        name         => '<LocationMatch',
-       func         => Redirect,
+       func         => Location,
        req_override => Apache2::Const::RSRC_CONF,
        args_how     => Apache2::Const::RAW_ARGS,
        cmd_data     => '1',

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to