Bugfixing PConfig

This commit is contained in:
Philipp Holzer 2019-02-03 23:22:05 +01:00
parent 8b70ae6d46
commit f3da5b3a2f
No known key found for this signature in database
GPG key ID: 517BE60E2CE5C8A5
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();
}