Author: Derick Rethans
Date: 2006-01-24 09:11:38 +0100 (Tue, 24 Jan 2006)
New Revision: 2013

Log:
- Remove the unnecessary extra autoloading thingy.

Modified:
   packages/Execution/trunk/docs/tutorial_autoload.php
   packages/Translation/trunk/docs/tutorial_autoload.php

Modified: packages/Execution/trunk/docs/tutorial_autoload.php
===================================================================
--- packages/Execution/trunk/docs/tutorial_autoload.php 2006-01-24 08:04:19 UTC 
(rev 2012)
+++ packages/Execution/trunk/docs/tutorial_autoload.php 2006-01-24 08:11:38 UTC 
(rev 2013)
@@ -13,11 +13,5 @@
     {
         return;
     }
-    if ( strpos( $class_name, '_' ) !== false )
-    {
-        $file = str_replace( '_', '/', $class_name ) . '.php';
-        require_once( $file );
-    }
 }
-
 ?>

Modified: packages/Translation/trunk/docs/tutorial_autoload.php
===================================================================
--- packages/Translation/trunk/docs/tutorial_autoload.php       2006-01-24 
08:04:19 UTC (rev 2012)
+++ packages/Translation/trunk/docs/tutorial_autoload.php       2006-01-24 
08:11:38 UTC (rev 2013)
@@ -13,11 +13,5 @@
     {
         return;
     }
-    if ( strpos( $class_name, '_' ) !== false )
-    {
-        $file = str_replace( '_', '/', $class_name ) . '.php';
-        require_once( $file );
-    }
 }
-
 ?>

-- 
svn-components mailing list
[email protected]
http://lists.ez.no/mailman/listinfo/svn-components

Reply via email to