X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fincludes.php;h=2cf6aaafb399db9e3524e4be652ce03b99bcead6;hp=7e3f5c9ffc6bf37b059d87261772ff30b4e29bc6;hb=873cb0786816e43efdd88d6b97718bde756b727a;hpb=c6d73b0e3246efc824cb98338d4be7ee5bc9f308;ds=inline diff --git a/inc/includes.php b/inc/includes.php index 7e3f5c9f..2cf6aaaf 100644 --- a/inc/includes.php +++ b/inc/includes.php @@ -28,6 +28,10 @@ $cfg = FrameworkConfiguration::getInstance(); // Include the class loader function require(sprintf("%sinc/loader/class_ClassLoader.php", $cfg->readConfig('base_path'))); +// Shall we include additional configs where you can configure some things? Then +// Load matching config +ClassLoader::getInstance()->loadExtraConfigs(); + // Does the user has an application specified? if (!empty($_GET['app'])) { // Set the application from string @@ -78,9 +82,5 @@ if (is_dir(sprintf("%sdevel", $cfg->readConfig('base_path')))) { ClassLoader::getInstance()->loadClasses('devel'); } -// Shall we include additional configs where you can configure some things? Then -// Load matching config -ClassLoader::getInstance()->loadExtraConfigs(); - // [EOF] ?>