diff options
-rw-r--r-- | Inject.pm | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -5,12 +5,12 @@ use warnings; use Apache2::CmdParms (); use Apache2::Module (); -use Apache2::Const qw/OR_LIMIT TAKE12/; +use Apache2::Const qw/OR_LIMIT OR_AUTHCFG TAKE12/; my @directives = ( { name => 'Inject', func => __PACKAGE__.'::Inject', - req_override => OR_LIMIT, + req_override => OR_LIMIT|OR_AUTHCFG, args_how => TAKE12, errmsg => 'Inject HeadFile[!] FootFile[!]' } ); |