Continued with loader and file i/o stuff:
[core.git] / inc / loader / class_ClassLoader.php
index eea558055fee071088fdac0eefd59d9f53e3e2a2..af4d8d336c3ff9e89c61582814428ea57ec86505 100644 (file)
@@ -305,7 +305,6 @@ class ClassLoader {
                array_push($ignoreList, '.');
                array_push($ignoreList, '..');
                array_push($ignoreList, '.htaccess');
-               array_push($ignoreList, '.svn');
 
                // Keep it in class for later usage
                $this->ignoreList = $ignoreList;
@@ -320,7 +319,7 @@ class ClassLoader {
                // If the basePath is FALSE it is invalid
                if ($basePath2 === FALSE) {
                        /* @todo: Do not die here. */
-                       exit(__METHOD__ . ':Cannot read ' . $basePath . ' !');
+                       exit(__METHOD__ . ':Cannot read ' . $basePath . ' !' . PHP_EOL);
                } else {
                        // Set base path
                        $basePath = $basePath2;