[pLog-svn] r5358 - plog/branches/lifetype-1.2/class/logger/config

oscar at devel.lifetype.net oscar at devel.lifetype.net
Sat Apr 28 11:21:36 EDT 2007


Author: oscar
Date: 2007-04-28 11:21:35 -0400 (Sat, 28 Apr 2007)
New Revision: 5358

Modified:
   plog/branches/lifetype-1.2/class/logger/config/loggerconfigloader.class.php
Log:
We can't use lt_include here or else for some reason the file doesn't get loaded.

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 14:07:08 UTC (rev 5357)
+++ plog/branches/lifetype-1.2/class/logger/config/loggerconfigloader.class.php	2007-04-28 15:21:35 UTC (rev 5358)
@@ -23,7 +23,7 @@
 		{
 			// load the config file if it is readable
 			if( File::isReadable( $defaultFilePath )) {
-				lt_include( $defaultFilePath );
+				include_once( $defaultFilePath );
 				$this->_keys = $config;
 			}
 			else {



More information about the pLog-svn mailing list