Code

Updated 'update-gosa'
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 12 Aug 2010 07:15:17 +0000 (07:15 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 12 Aug 2010 07:15:17 +0000 (07:15 +0000)
-added abilitiy to exclude directories from php-auto-include

git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19375 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/update-gosa

index 8107fd7c910f32433a4151d42df0cf0f14c61e4f..b0629f5d944f97bde465c5c6904ccde050df6ea0 100755 (executable)
@@ -105,7 +105,7 @@ function get_classes($folder= ".")
     }
 
     /* Recurse through all "common" directories */
-    if (is_dir($file)){
+    if (is_dir($file) && !file_exists("{$file}/excludeFromAutoLoad")){
       get_classes($file);
       continue;
     }