From: Sebastian Riedel Date: Mon, 18 Apr 2005 20:49:31 +0000 (+0000) Subject: Fixed session fastmmap X-Git-Tag: v0.01~31 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Plugin-Session-State-Cookie.git;a=commitdiff_plain;h=0850f14b361b7473a299fe05b1dc70fe56fecdbd Fixed session fastmmap --- diff --git a/Changes b/Changes index 45b8add..f98f61b 100644 --- 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. diff --git a/FastMmap.pm b/FastMmap.pm index 9eb86da..fd814db 100644 --- a/FastMmap.pm +++ b/FastMmap.pm @@ -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(@_);