[pLog-svn] r5363 - plog/branches/lifetype-1.2/class/logger/config
    oscar at devel.lifetype.net 
    oscar at devel.lifetype.net
       
    Sat Apr 28 18:09:52 EDT 2007
    
    
  
Author: oscar
Date: 2007-04-28 18:09:52 -0400 (Sat, 28 Apr 2007)
New Revision: 5363
Modified:
   plog/branches/lifetype-1.2/class/logger/config/loggerconfigloader.class.php
Log:
Replaced include_once with include()
Modified: plog/branches/lifetype-1.2/class/logger/config/loggerconfigloader.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/logger/config/loggerconfigloader.class.php	2007-04-28 18:44:30 UTC (rev 5362)
+++ plog/branches/lifetype-1.2/class/logger/config/loggerconfigloader.class.php	2007-04-28 22:09:52 UTC (rev 5363)
@@ -23,7 +23,7 @@
 		{
 			// load the config file if it is readable
 			if( File::isReadable( $defaultFilePath )) {
-				include_once( $defaultFilePath );
+				include( $defaultFilePath );
 				$this->_keys = $config;
 			}
 			else {
    
    
More information about the pLog-svn
mailing list