X-Git-Url: http://git.shiar.net/perl/plp/.git/blobdiff_plain/30c44f02696079e94a9dd261e1dcfe0898a5367b..58286f44f06df2a424e09f50312616b96832b30d:/PLP/Apache.pm diff --git a/PLP/Apache.pm b/PLP/Apache.pm index fd2607b..c388095 100644 --- a/PLP/Apache.pm +++ b/PLP/Apache.pm @@ -30,10 +30,10 @@ sub init { $ENV{PLP_FILENAME} = my $filename = $r->filename; unless (-f $filename) { - return MP2 ? Apache2::Const::NOT_FOUND() : Apache::Constants::NOT_FOUND(); + return MP2 ? Apache2::Const::HTTP_NOT_FOUND() : Apache::Constants::NOT_FOUND(); } unless (-r _) { - return MP2 ? Apache2::Const::FORBIDDEN() : Apache::Constants::FORBIDDEN(); + return MP2 ? Apache2::Const::HTTP_FORBIDDEN() : Apache::Constants::FORBIDDEN(); } $ENV{PLP_NAME} = $r->uri;