Yoshihisa Fukuhara
higef****@users*****
2006年 5月 23日 (火) 14:52:46 JST
Index: affelio/extlib/CGI/Session.pm
diff -u affelio/extlib/CGI/Session.pm:1.4 affelio/extlib/CGI/Session.pm:1.5
--- affelio/extlib/CGI/Session.pm:1.4 Sat Jan 28 17:47:22 2006
+++ affelio/extlib/CGI/Session.pm Tue May 23 14:52:46 2006
@@ -1,6 +1,6 @@
package CGI::Session;
-# $Id: Session.pm,v 1.4 2006/01/28 08:47:22 slash5234 Exp $
+# $Id: Session.pm,v 1.5 2006/05/23 05:52:46 higefuku Exp $
use strict;
use Carp;
@@ -403,7 +403,7 @@
return 1;
}
-# $Id: Session.pm,v 1.4 2006/01/28 08:47:22 slash5234 Exp $
+# $Id: Session.pm,v 1.5 2006/05/23 05:52:46 higefuku Exp $
=pod
@@ -621,8 +621,8 @@
#
# setting defaults, since above arguments might be 'undef'
$self->{_DSN}->{driver} ||= "file";
- $self->{_DSN}->{serializer} ||= "default";
- $self->{_DSN}->{id} ||= "md5";
+ $self->{_DSN}->{serializer} ||= "Default";
+ $self->{_DSN}->{id} ||= "MD5";
# Beyond this point used to be '_init()' method. But I had to merge them together
# since '_init()' did not serve specific purpose