[pLog-svn] r1982 - plog/branches/plog-1.0.1/class/net/http/session

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Tue May 10 15:23:11 GMT 2005


Author: jondaley
Date: 2005-05-10 15:23:11 +0000 (Tue, 10 May 2005)
New Revision: 1982

Modified:
   plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php
Log:
per the docs, the session name is only allowed to be alphanumerics.  Apparently, lots of implementations of php are lenient, so we didn't notice before.

Modified: plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php
===================================================================
--- plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php	2005-05-10 13:59:34 UTC (rev 1981)
+++ plog/branches/plog-1.0.1/class/net/http/session/sessionmanager.class.php	2005-05-10 15:23:11 UTC (rev 1982)
@@ -36,7 +36,7 @@
             $sessionDomain = SessionManager::setSessionCookieDomain();
 		
 			//session_cache_limiter( "public" );
-			session_name( "plog_session" );
+			session_name( "plogsession" );
             session_set_cookie_params(0, $sessionPath, $sessionDomain);
 			session_start();
 




More information about the pLog-svn mailing list