]> git.decadent.org.uk Git - maypole.git/commitdiff
Quick mod_perl2 fix
authorSebastian Riedel <sri@labs.kraih.com>
Fri, 10 Sep 2004 00:33:01 +0000 (00:33 +0000)
committerSebastian Riedel <sri@labs.kraih.com>
Fri, 10 Sep 2004 00:33:01 +0000 (00:33 +0000)
git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@172 48953598-375a-da11-a14b-00016c27c3ee

lib/Maypole.pm

index e80490141760cfc16844b28e6943cc17d5d8f212..b18aac351ac44b21cb3d1ddd71a5021e4c19f35a 100644 (file)
@@ -49,10 +49,10 @@ sub init {
 
 sub handler {
     # See Maypole::Workflow before trying to understand this.
-    my $class = shift;
+    my ( $class, $req ) = @_;
     $class->init unless $class->init_done;
     my $r = bless { config => $class->config }, $class;
-    $r->get_request();
+    $r->get_request($req);
     $r->parse_location();
     my $status = $r->handler_guts();
     return $status unless $status == OK;