removed cookie expiriation
Christian Hansen [Fri, 27 May 2005 22:19:21 +0000 (22:19 +0000)]
Changes
FastMmap.pm

diff --git a/Changes b/Changes
index eef2fce..dfa5402 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension Catalyst::Plugin::Session::FastMmap.
 
+0.13 Xxx Xxx 00 00:00:00 EDT 2005
+        - Remove cookie expiriation since it introduced a bug.
+
 0.12 Thu May 26 00:37:00 EDT 2005
         - Seconds it should be.
 
index 35c3a2e..0373fff 100644 (file)
@@ -9,7 +9,7 @@ use URI;
 use URI::Find;
 use File::Temp 'tempdir';
 
-our $VERSION = '0.12';
+our $VERSION = '0.13';
 
 __PACKAGE__->mk_classdata('_session');
 __PACKAGE__->mk_accessors('sessionid');
@@ -55,8 +55,7 @@ sub finalize {
         }
         if ( $set ) {
             $c->response->cookies->{session} = { 
-                value   => $sid, 
-                expires => '+' . $c->config->{session}->{expires} . 's'
+                value => $sid
             };
         }
         if ( $c->config->{session}->{rewrite} ) {