[pLog-svn] r3739 - plog/trunk

mark at devel.lifetype.net mark at devel.lifetype.net
Wed Jul 19 16:55:03 GMT 2006


Author: mark
Date: 2006-07-19 16:55:02 +0000 (Wed, 19 Jul 2006)
New Revision: 3739

Modified:
   plog/trunk/rss.php
Log:
Fixed a error notice in PHP5.

Modified: plog/trunk/rss.php
===================================================================
--- plog/trunk/rss.php	2006-07-19 16:31:56 UTC (rev 3738)
+++ plog/trunk/rss.php	2006-07-19 16:55:02 UTC (rev 3739)
@@ -27,7 +27,7 @@
     //
     SessionManager::Init();
     $session = HttpVars::getSession();
-    if( $session["SessionInfo"] == "" ) {
+    if( empty( $session["SessionInfo"] ) ) {
         $session["SessionInfo"] = new SessionInfo();
         HttpVars::setSession( $session );
     }



More information about the pLog-svn mailing list