foreach (FrameworkBootstrap::getConfigurationInstance()->getConfigurationArray() as $configKey => $configValue) {
// Key must end with _class
//* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugMessage(sprintf('TESTS-CONFIGURATION-IS-ENABLED-FILTER: configKey[%s]=%s,configValue[%s]=%s', gettype($configKey), $configKey, gettype($configValue), $configValue));
- if (substr($configKey, 0, 3) != 'is_' && substr($configKey, -8, 8) != '_enabled') {
+ if (substr($configKey, 0, 3) != 'is_' && substr($configKey, -8, 8) != '_enabled' && substr($configKey, -7, 7) != '_loaded') {
// Is this a boolean value?
if (is_bool($configValue)) {
// Issue a warning
// CFG: COOKIE-DOMAIN
$cfg->setConfigEntry('cookie_domain', FrameworkBootstrap::detectDomain()); // Is mostly the same...
-// CFG: COOKIE-SSL
-$cfg->setConfigEntry('cookie_ssl', FrameworkBootstrap::isHttpSecured());
-
// CFG: GERMAN-DATE-TIME
$cfg->setConfigEntry('german_date_time', "%3\$s.%2\$s.%1\$s, %4\$s:%5\$s:%6\$s");