Added missing class
[core.git] / inc / selector.php
index 1010386c2b46e12e2aa54878f16f29499b9f17f0..e8dffb2c8facd206c71f2a579c9233c9c7f7608b 100644 (file)
@@ -59,7 +59,7 @@ foreach ($configAppIncludes as $appInc) {
        $appFqFn = $basePathFile . '/' . $appInc . '.php';
 
        // Does the include file exists?
-       if ((file_exists($appFqFn)) && (is_file($appFqFn)) && (is_readable($appFqFn))) {
+       if (BaseFrameworkSystem::isReadableFile($appFqFn)) {
                // Load it
                //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - START\n";
                require($appFqFn);