X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fselector.php;h=e736e00c88550e9f1e4280498690559caba7de58;hp=1010386c2b46e12e2aa54878f16f29499b9f17f0;hb=39c1aaf705e8e3c274d56ef1fa931a086f729c48;hpb=d26e71af1e28dc1429823bdec244df6303f9b2fb diff --git a/inc/selector.php b/inc/selector.php index 1010386c..e736e00c 100644 --- a/inc/selector.php +++ b/inc/selector.php @@ -4,7 +4,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @deprecated @@ -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); @@ -78,6 +78,3 @@ unset($appInc); unset($configAppIncludes); unset($appFqFn); unset($basePathFile); - -// [EOF] -?>