[pLog-svn] r2324 - plog/branches/plog-1.0.2/class/net/http/session

jondaley at devel.plogworld.net jondaley at devel.plogworld.net
Thu Jul 14 14:51:04 GMT 2005


Author: jondaley
Date: 2005-07-14 14:51:04 +0000 (Thu, 14 Jul 2005)
New Revision: 2324

Modified:
   plog/branches/plog-1.0.2/class/net/http/session/sessionmanager.class.php
Log:
if we don't turn off the cache_limiter, and the php.ini has something other than blank, session_start will send cache information, and will break the httpconditional caching mechanism.

Modified: plog/branches/plog-1.0.2/class/net/http/session/sessionmanager.class.php
===================================================================
--- plog/branches/plog-1.0.2/class/net/http/session/sessionmanager.class.php	2005-07-14 14:49:52 UTC (rev 2323)
+++ plog/branches/plog-1.0.2/class/net/http/session/sessionmanager.class.php	2005-07-14 14:51:04 UTC (rev 2324)
@@ -35,7 +35,7 @@
             $sessionPath   = SessionManager::setSessionCookiePath();
             $sessionDomain = SessionManager::setSessionCookieDomain();
 		
-			//session_cache_limiter( "public" );
+			session_cache_limiter( "" );
 			session_name( "plogsession" );
             session_set_cookie_params(0, $sessionPath, $sessionDomain);
 			session_start();




More information about the pLog-svn mailing list