fixed problems with mod_perl2
Sebastian Riedel [Fri, 25 Mar 2005 13:09:39 +0000 (13:09 +0000)]
Changes
lib/Catalyst/Engine.pm

diff --git a/Changes b/Changes
index 2d6ca91..0bbd53a 100644 (file)
--- a/Changes
+++ b/Changes
@@ -2,6 +2,7 @@ This file documents the revision history for Perl extension Catalyst.
 
 5.00  XXX XXX XX XX:00:00 2005
         - whole new core for private action inheritance
+        - problems with mod_perl2 fixed
 
 4.34  Wed Mar 23 07:00:00 2005
         - added some messages to Makefile.PL
index efdc18d..be5c580 100644 (file)
@@ -386,13 +386,13 @@ sub get_action {
     return [];
 }
 
-=item $c->handler($r)
+=item $c->handler( $class, $r )
 
 Handles the request.
 
 =cut
 
-sub handler {
+sub handler ($$) {
     my ( $class, $r ) = @_;
 
     # Always expect worst case!