1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 17:44:37 +02:00

no-load option for e107::getConfig(); install routine synchronized against latest changes

This commit is contained in:
secretr
2010-10-28 14:05:41 +00:00
parent 2e918adb76
commit 104bed623b
2 changed files with 16 additions and 2 deletions

View File

@@ -1069,6 +1069,20 @@ class e_install
{
$this->logLine('Starting configuration import');
// PRE-CONFIG start - create and register blank config instances - do not load!
$config_aliases = array(
'core',
'core_backup',
'emote',
'menu',
'search',
'notify',
);
foreach ($config_aliases as $alias)
{
e107::getConfig($alias, false);
}
// PRE-CONFIG end
// Basic stuff to get the handlers/classes to work.