Fixed session fastmmap
Sebastian Riedel [Mon, 18 Apr 2005 20:49:31 +0000 (20:49 +0000)]
Changes
FastMmap.pm

diff --git a/Changes b/Changes
index 45b8add..f98f61b 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,9 @@
 Revision history for Perl extension Catalyst::Plugin::Session::FastMmap.
 
-0.08  Xxx Xxx 00 00:00:00 2005
+0.09  Mon Apr 18 22:00:00 2005
+        - s/output/body/ (Frank Wiegand)
+
+0.08  Sun Apr 17 00:00:00 2005
         - Cleaned docs
         - Added POD tests.
         - Fixed arguments to Cache::FastMmap.
index 9eb86da..fd814db 100644 (file)
@@ -9,7 +9,7 @@ use URI;
 use URI::Find;
 use File::Temp 'tempdir';
 
-our $VERSION = '0.07';
+our $VERSION = '0.09';
 
 __PACKAGE__->mk_classdata('_session');
 __PACKAGE__->mk_accessors('sessionid');
@@ -64,7 +64,7 @@ sub finalize {
                     return $c->uri($orig);
                 }
             );
-            $finder->find( \$c->res->{output} ) if $c->res->output;
+            $finder->find( \$c->res->{body} ) if $c->res->body;
         }
     }
     return $c->NEXT::finalize(@_);