]> git.decadent.org.uk Git - maypole.git/commitdiff
Remove dependency on Apache.
authorSimon Cozens <simon@simon-cozens.org>
Thu, 1 Apr 2004 16:18:32 +0000 (16:18 +0000)
committerSimon Cozens <simon@simon-cozens.org>
Thu, 1 Apr 2004 16:18:32 +0000 (16:18 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@100 48953598-375a-da11-a14b-00016c27c3ee

lib/Maypole/View/TT.pm

index 4bd7c0ebb836af2acd0817aba039b1da8b58b7e1..bdcebb2fee120f62e7ac46f31efd5f89847f75d3 100644 (file)
@@ -1,5 +1,4 @@
 package Maypole::View::TT;
-use Apache::Constants;
 use Lingua::EN::Inflect;
 use Template;
 use File::Spec;
@@ -71,7 +70,7 @@ sub process {
 sub error {
     my ($self, $r, $error) = @_;
     warn $error;
-    if ($error =~ /not found$/) { return DECLINED }
+    if ($error =~ /not found$/) { return -1 }
     $r->{content_type} = "text/plain";
     $r->{output} = $error;
     $r->send_output;