[pLog-svn] r5490 - plog/trunk

mark at devel.lifetype.net mark at devel.lifetype.net
Tue Jun 5 10:31:13 EDT 2007


Author: mark
Date: 2007-06-05 10:31:13 -0400 (Tue, 05 Jun 2007)
New Revision: 5490

Modified:
   plog/trunk/wizard.php
Log:
Changes include_once to lt_include

Modified: plog/trunk/wizard.php
===================================================================
--- plog/trunk/wizard.php	2007-06-05 14:21:42 UTC (rev 5489)
+++ plog/trunk/wizard.php	2007-06-05 14:31:13 UTC (rev 5490)
@@ -32,50 +32,50 @@
     // many hosts don't have this enabled and we, for the time being, need it...
     ini_set("arg_seperator.output", "&");
     
-    include_once( PLOG_CLASS_PATH."class/bootstrap.php" );
-    include_once( PLOG_CLASS_PATH."class/controller/controller.class.php" );
-    include_once( PLOG_CLASS_PATH."class/template/templateservice.class.php" );
-    include_once( PLOG_CLASS_PATH."class/action/action.class.php" );
-    include_once( PLOG_CLASS_PATH."class/database/db.class.php" );
-    include_once( PLOG_CLASS_PATH."class/template/template.class.php" );
-    include_once( PLOG_CLASS_PATH."class/view/view.class.php" );
-    include_once( PLOG_CLASS_PATH."class/data/validator/stringvalidator.class.php" );
-    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/data/timestamp.class.php" );    
-    include_once( PLOG_CLASS_PATH."class/net/http/httpvars.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" );
-    include_once( PLOG_CLASS_PATH."class/gallery/resizers/gddetector.class.php" );
-    include_once( PLOG_CLASS_PATH."class/config/configfilestorage.class.php" );
-    include_once( PLOG_CLASS_PATH."class/data/textfilter.class.php" );
-    include_once( PLOG_CLASS_PATH."class/locale/locales.class.php" );
-    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/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/mylinkscategories.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/userpermissions.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/blogcategories.class.php" );
-    include_once( PLOG_CLASS_PATH."class/dao/globalarticlecategories.class.php" );
-    include_once( PLOG_CLASS_PATH."class/gallery/dao/galleryalbums.class.php" );     
-	include_once( PLOG_CLASS_PATH."class/dao/permissions.class.php" );
-	include_once( PLOG_CLASS_PATH."class/dao/userpermissions.class.php" );
-	include_once( PLOG_CLASS_PATH."class/dao/permission.class.php" );
-	include_once( PLOG_CLASS_PATH."class/dao/userpermission.class.php" );			
+    include( PLOG_CLASS_PATH."class/bootstrap.php" );
+    lt_include( PLOG_CLASS_PATH."class/controller/controller.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/template/templateservice.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/action/action.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/database/db.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/template/template.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/view/view.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/data/validator/stringvalidator.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/data/validator/emailvalidator.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/data/validator/passwordvalidator.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/data/timestamp.class.php" );    
+    lt_include( PLOG_CLASS_PATH."class/net/http/httpvars.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/misc/version.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/file/file.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/file/finder/filefinder.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/gallery/resizers/gddetector.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/config/configfilestorage.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/data/textfilter.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/locale/locales.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/locale/localefinder.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/template/templatesets/templatesets.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/bloginfo.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/users.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/blogs.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/articlecategories.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/articles.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/mylinkscategories.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/userpermissions.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/blogcategories.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/dao/globalarticlecategories.class.php" );
+    lt_include( PLOG_CLASS_PATH."class/gallery/dao/galleryalbums.class.php" );     
+	lt_include( PLOG_CLASS_PATH."class/dao/permissions.class.php" );
+	lt_include( PLOG_CLASS_PATH."class/dao/userpermissions.class.php" );
+	lt_include( PLOG_CLASS_PATH."class/dao/permission.class.php" );
+	lt_include( PLOG_CLASS_PATH."class/dao/userpermission.class.php" );			
 	lt_include( PLOG_CLASS_PATH."class/misc/integritychecker.class.php" );
     
     // table schemas
-    include_once( PLOG_CLASS_PATH."install/dbschemas.properties.php" );
+    lt_include( PLOG_CLASS_PATH."install/dbschemas.properties.php" );
     // default configuration values for 1.1
-    include_once( PLOG_CLASS_PATH."install/defaultconfig.properties.php" );
+    lt_include( PLOG_CLASS_PATH."install/defaultconfig.properties.php" );
     // post schema changes after upgrade
-    include_once( PLOG_CLASS_PATH."install/changes_10_11.properties.php" );
+    lt_include( PLOG_CLASS_PATH."install/changes_10_11.properties.php" );
 
     define( "TEMP_FOLDER", "./tmp" );
 
@@ -456,7 +456,7 @@
     
         function validate()
         {
-			include( PLOG_CLASS_PATH."install/files.properties.php");
+			lt_include( PLOG_CLASS_PATH."install/files.properties.php");
 			
 			$result = IntegrityChecker::checkIntegrity( 
 				$data
@@ -565,7 +565,7 @@
          */
         function getPageFromRequest()
         {
-            include_once( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php");    	
+            lt_include( PLOG_CLASS_PATH."class/data/validator/integervalidator.class.php");    	
 			// get the value from the request
 			$page = HttpVars::getRequestValue( "page" );
 			// but first of all, validate it
@@ -989,7 +989,7 @@
             }
 
 			// load the core permissions
-		    include_once( PLOG_CLASS_PATH."install/corepermissions.properties.php" );
+		    lt_include( PLOG_CLASS_PATH."install/corepermissions.properties.php" );
 
 		    // process permissions
 		    $total = 0;		
@@ -1274,7 +1274,7 @@
             }
             
             // clean the data cache to avoid problems when we're done
-            include_once( PLOG_CLASS_PATH."class/cache/cachemanager.class.php" );
+            lt_include( PLOG_CLASS_PATH."class/cache/cachemanager.class.php" );
             $cache =& CacheManager::getCache();
             $cache->clearCache();
 
@@ -1530,7 +1530,7 @@
 			$errors = false;
 			
 			// load the core permissions
-		    include_once( PLOG_CLASS_PATH."install/corepermissions.properties.php" );	
+		    lt_include( PLOG_CLASS_PATH."install/corepermissions.properties.php" );	
 
 		    // process permissions
 		    $total = 0;		
@@ -1949,7 +1949,7 @@
                     else {
                         // no more data to transform, we can finalize the installation!
 						// delete the contents of the temporary folder
-						include_once( PLOG_CLASS_PATH."class/config/config.class.php" );
+						lt_include( PLOG_CLASS_PATH."class/config/config.class.php" );
 						$config =& Config::getConfig();
 						$tmpFolder = $config->getValue( "temp_folder", TEMP_FOLDER );
                         WizardTools::cleanTmpFolder();



More information about the pLog-svn mailing list