[pLog-svn] r1650 - plog/trunk/class/net/http/session

ork at devel.plogworld.net ork at devel.plogworld.net
Wed Mar 30 17:51:43 GMT 2005


Author: ork
Date: 2005-03-30 17:51:43 +0000 (Wed, 30 Mar 2005)
New Revision: 1650

Modified:
   plog/trunk/class/net/http/session/sessionmanager.class.php
Log:
added missing ! :-)


Modified: plog/trunk/class/net/http/session/sessionmanager.class.php
===================================================================
--- plog/trunk/class/net/http/session/sessionmanager.class.php	2005-03-30 17:41:05 UTC (rev 1649)
+++ plog/trunk/class/net/http/session/sessionmanager.class.php	2005-03-30 17:51:43 UTC (rev 1650)
@@ -40,7 +40,7 @@
 			// if there is no session object, we better create one
 			//
 			$session = HttpVars::getSession();
-			if( array_key_exists("SessionInfo", $session) || $session["SessionInfo"] == "" ) {
+			if( !array_key_exists("SessionInfo", $session) || $session["SessionInfo"] == "" ) {
 				$session["SessionInfo"] = new SessionInfo();
 				HttpVars::setSession( $session );
 			}		




More information about the pLog-svn mailing list