aboutsummaryrefslogtreecommitdiff
path: root/Inject.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Inject.pm')
-rw-r--r--Inject.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Inject.pm b/Inject.pm
index 5b6df8d..10c5934 100644
--- a/Inject.pm
+++ b/Inject.pm
@@ -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[!]' }
);