From:
<a_...@us...> - 2006-09-30 01:39:48
|
Update of /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv2546/lib/OpenInteract2/SessionManager Modified Files: DBI.pm SQLite.pm Log Message: removed undef catenation warnings Index: DBI.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager/DBI.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DBI.pm 18 Mar 2005 04:09:51 -0000 1.5 --- DBI.pm 30 Sep 2006 01:39:43 -0000 1.6 *************** *** 16,19 **** --- 16,20 ---- sub _create_session { my ( $class, $session_config, $session_id ) = @_; + $session_id = '' unless ( defined $session_id ); $log ||= get_logger( LOG_SESSION ); Index: SQLite.pm =================================================================== RCS file: /cvsroot/openinteract/OpenInteract2/lib/OpenInteract2/SessionManager/SQLite.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SQLite.pm 18 Mar 2005 04:09:51 -0000 1.5 --- SQLite.pm 30 Sep 2006 01:39:43 -0000 1.6 *************** *** 16,19 **** --- 16,20 ---- sub _create_session { my ( $class, $session_config, $session_id ) = @_; + $session_id = '' unless ( defined $session_id ); $log ||= get_logger( LOG_SESSION ); |