This getter needs also to be public and be called through iterator.
[core.git] / inc / selector.php
index be163f97a392776e255cc4f170007bf08e38cfa9..1052981312fd22efb505807f437cb155d504b421 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  * @deprecated
@@ -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;
        }
 }