[pLog-svn] r4087 - plog/trunk

oscar at devel.lifetype.net oscar at devel.lifetype.net
Wed Oct 4 19:55:01 GMT 2006


Author: oscar
Date: 2006-10-04 19:55:00 +0000 (Wed, 04 Oct 2006)
New Revision: 4087

Modified:
   plog/trunk/admin.php
   plog/trunk/index.php
Log:
forgot to commit two files


Modified: plog/trunk/admin.php
===================================================================
--- plog/trunk/admin.php	2006-10-04 19:48:52 UTC (rev 4086)
+++ plog/trunk/admin.php	2006-10-04 19:55:00 UTC (rev 4087)
@@ -7,12 +7,12 @@
     }
 
     include_once( PLOG_CLASS_PATH."class/bootstrap.php" );
-    include_once( PLOG_CLASS_PATH."class/controller/admincontroller.class.php" );
-    include_once( PLOG_CLASS_PATH."class/net/http/session/sessionmanager.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/userinfo.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/bloginfo.class.php" );
-    include_once( PLOG_CLASS_PATH."class/plugin/pluginmanager.class.php" );
-    include_once( PLOG_CLASS_PATH.'class/template/templatesets/templatesets.class.php' );
+    lt_include( PLOG_CLASS_PATH."class/controller/admincontroller.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/net/http/session/sessionmanager.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/userinfo.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/bloginfo.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/plugin/pluginmanager.class.php" );
+    lt_include( PLOG_CLASS_PATH.'class/template/templatesets/templatesets.class.php' );
 
     ini_set("arg_seperator.output", "&");
     ini_set("magic_quotes_runtime", 0 );
@@ -24,7 +24,7 @@
     // a security check, or else people might forget to remove the wizard.php script
     //
     if( File::isReadable( "wizard.php")) {
-		include_once( PLOG_CLASS_PATH."install/installation.class.php" );
+		lt_include( PLOG_CLASS_PATH."install/installation.class.php" );
 		Installation::check();
     }
 

Modified: plog/trunk/index.php
===================================================================
--- plog/trunk/index.php	2006-10-04 19:48:52 UTC (rev 4086)
+++ plog/trunk/index.php	2006-10-04 19:55:00 UTC (rev 4087)
@@ -11,12 +11,12 @@
     }
 
     include_once( PLOG_CLASS_PATH."class/bootstrap.php" );    
-    include_once( PLOG_CLASS_PATH."class/controller/blogcontroller.class.php" );
-    include_once( PLOG_CLASS_PATH."class/net/http/session/sessionmanager.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/userinfo.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/bloginfo.class.php" );
-    include_once( PLOG_CLASS_PATH."class/plugin/pluginmanager.class.php" );
-    include_once( PLOG_CLASS_PATH."class/data/timestamp.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/controller/blogcontroller.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/net/http/session/sessionmanager.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/userinfo.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/bloginfo.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/plugin/pluginmanager.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/data/timestamp.class.php" );
 
     
     // start gathering statistics
@@ -31,7 +31,7 @@
     // a security check, or else people might forget to remove the wizard.php script
     //
     if( File::isReadable( "wizard.php")) {
-    	include_once( PLOG_CLASS_PATH."install/installation.class.php" );
+    	lt_include( PLOG_CLASS_PATH."install/installation.class.php" );
     	Installation::check();
     }
 



More information about the pLog-svn mailing list