Bugfixing PConfig

This commit is contained in:
Philipp Holzer
2019-02-03 23:22:05 +01:00
parent 8b70ae6d46
commit f3da5b3a2f
4 changed files with 10 additions and 8 deletions

View File

@@ -375,7 +375,7 @@ class App
$adapterType = $this->config->get('system', 'config_adapter');
$adapter = ConfigFactory::createConfig($adapterType, $this->config);
Core\Config::setAdapter($adapter);
$adapterP = ConfigFactory::createConfig($adapterType, $this->config);
$adapterP = ConfigFactory::createPConfig($adapterType, $this->config);
Core\PConfig::setAdapter($adapterP);
Core\Config::load();
}