[pLog-svn] r2992 - plog/trunk

mark at devel.lifetype.net mark at devel.lifetype.net
Wed Mar 1 03:10:17 GMT 2006


Author: mark
Date: 2006-03-01 03:10:15 +0000 (Wed, 01 Mar 2006)
New Revision: 2992

Modified:
   plog/trunk/wizard.php
Log:
Remove the object class dependency.

Modified: plog/trunk/wizard.php
===================================================================
--- plog/trunk/wizard.php	2006-03-01 01:50:52 UTC (rev 2991)
+++ plog/trunk/wizard.php	2006-03-01 03:10:15 UTC (rev 2992)
@@ -36,12 +36,8 @@
     include_once( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php" );
     include_once( PLOG_CLASS_PATH."class/data/validator/emailvalidator.class.php" );
     include_once( PLOG_CLASS_PATH."class/data/validator/passwordvalidator.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/users.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/blogs.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/articlecategories.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/articles.class.php" );
+    include_once( PLOG_CLASS_PATH."class/data/timestamp.class.php" );    
     include_once( PLOG_CLASS_PATH."class/net/http/httpvars.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/userpermissions.class.php" );
     include_once( PLOG_CLASS_PATH."class/misc/version.class.php" );
     include_once( PLOG_CLASS_PATH."class/file/file.class.php" );
     include_once( PLOG_CLASS_PATH."class/file/finder/filefinder.class.php" );
@@ -52,8 +48,11 @@
     include_once( PLOG_CLASS_PATH."class/locale/localefinder.class.php" );
     include_once( PLOG_CLASS_PATH."class/template/templatesets/templatesets.class.php" );
     include_once( PLOG_CLASS_PATH."class/dao/bloginfo.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/article.class.php" );
-    include_once( PLOG_CLASS_PATH."class/data/timestamp.class.php" );
+    include_once( PLOG_CLASS_PATH."class/dao/users.class.php" );
+    include_once( PLOG_CLASS_PATH."class/dao/blogs.class.php" );
+    include_once( PLOG_CLASS_PATH."class/dao/articlecategories.class.php" );
+    include_once( PLOG_CLASS_PATH."class/dao/articles.class.php" );
+    include_once( PLOG_CLASS_PATH."class/dao/userpermissions.class.php" );    
 
     define( "TEMP_FOLDER", "./tmp" );
 
@@ -672,7 +671,7 @@
     /**
      * some useful little functions
      */
-    class WizardTools extends Object
+    class WizardTools
     {
        /**
         * returns true if plog has already been installed before or



More information about the pLog-svn mailing list