[pLog-svn] r4406 - plog/trunk

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Tue Dec 19 03:08:45 GMT 2006


Author: jondaley
Date: 2006-12-19 03:08:44 +0000 (Tue, 19 Dec 2006)
New Revision: 4406

Modified:
   plog/trunk/index.php
Log:
hrm. bad behavior tries to access our database before we have installed it

Modified: plog/trunk/index.php
===================================================================
--- plog/trunk/index.php	2006-12-19 03:01:20 UTC (rev 4405)
+++ plog/trunk/index.php	2006-12-19 03:08:44 UTC (rev 4406)
@@ -7,15 +7,8 @@
     }
 
     include_once( PLOG_CLASS_PATH."class/bootstrap.php" );    
-    lt_include( PLOG_CLASS_PATH."plugins/badbehavior/index.inc.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" );
+    lt_include( PLOG_CLASS_PATH."class/file/file.class.php" );
 
-    
     // start gathering statistics
     Info::startMetrics();    
 
@@ -32,6 +25,17 @@
     	Installation::check();
     }
 
+
+    lt_include( PLOG_CLASS_PATH."plugins/badbehavior/index.inc.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" );
+
+    
+
     // initialize the session
     SessionManager::init();
 



More information about the pLog-svn mailing list