X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fselector.php;h=1052981312fd22efb505807f437cb155d504b421;hp=6f42112e066f30e99c1f07f8cfdcbb2713a04612;hb=5c59e6f195a02fdedd26f04150a83a3b87b8ba24;hpb=fdc6a02b5e6c2155cda61fcc345c7583b734ab85 diff --git a/inc/selector.php b/inc/selector.php index 6f42112e..10529813 100644 --- a/inc/selector.php +++ b/inc/selector.php @@ -44,6 +44,7 @@ $basePathFile = FrameworkConfiguration::getSelfInstance()->getConfigEntry('appli if (!is_dir($basePathFile)) { // Not found. trigger_error('Application ' . FrameworkConfiguration::getSelfInstance()->getConfigEntry('app_name') . ' not found.'); + exit; } // END - if // Load them all (try only) @@ -65,9 +66,10 @@ foreach ($configAppIncludes as $appInc) { //* DEBUG: */ print basename(__FILE__)."[".__LINE__."]: Loading ".basename($appFqFn)." - END\n"; } elseif (FrameworkConfiguration::getSelfInstance()->getConfigEntry('verbose_level') > 0) { // File is missing - trigger_error(sprintf("Cannot load application script %s.php! File is missing or read-protected.", + trigger_error(sprintf('Cannot load application script %s.php! File is missing or read-protected.', $appInc )); + exit; } }