More quotes rewritten
[core.git] / inc / selector.php
index 40789c0c97a58cdf1437864218a24042a359c472..33a4fa966e7a05e6d33ef2aeaca489539a3cb902 100644 (file)
@@ -27,20 +27,20 @@ $cfg = FrameworkConfiguration::getInstance();
 
 // Try to load these includes in the given order
 $configAppIncludes = array(
-       sprintf("class_%s", $cfg->readConfig('app_helper_class')), // The ApplicationHelper class
-       "config",               // The application's own configuration
-       "data",                 // Application data
-       "init",                 // The application initializer
-       "loader",               // The application's class loader
-       "debug",                // Some debugging stuff
-       "exceptions",   // The application's own exception handler
-       "starter",              // The application starter (calls entryPoint(), etc.)
+       'class_' . $cfg->readConfig('app_helper_class'), // The ApplicationHelper class
+       'config',               // The application's own configuration
+       'data',                 // Application data
+       'init',                 // The application initializer
+       'loader',               // The application's class loader
+       'debug',                // Some debugging stuff
+       'exceptions',   // The application's own exception handler
+       'starter',              // The application starter (calls entryPoint(), etc.)
 );
 
 // Load them all (try only)
 foreach ($configAppIncludes as $inc) {
        // Skip starter in test mode
-       if (($inc == "starter") && (defined('TEST'))) {
+       if (($inc == 'starter') && (defined('TEST'))) {
                // Skip it here
                continue;
        }