This commit is contained in:
Ronald Quenta
2017-08-25 10:03:29 -04:00
parent 1b5efad996
commit 70a3cd641b

View File

@@ -3898,8 +3898,8 @@ class WorkspaceTools
} }
$this->initPropel(true); $this->initPropel(true);
$conf = new Configuration(); $conf = new Configuration();
if (!$bExist = $conf->exists('MIGRATED_PLUGIN', 'singleton')) { $pathSingleton = PATH_DATA . 'sites' . PATH_SEP . $workspace . PATH_SEP . 'plugin.singleton';
$pathSingleton = PATH_DATA . 'sites' . PATH_SEP . $workspace . PATH_SEP . 'plugin.singleton'; if ((!$bExist = $conf->exists('MIGRATED_PLUGIN', 'singleton')) && file_exists($pathSingleton)) {
$oPluginRegistry = unserialize(file_get_contents($pathSingleton)); $oPluginRegistry = unserialize(file_get_contents($pathSingleton));
$pluginAdapter = new PluginAdapter(); $pluginAdapter = new PluginAdapter();
$pluginAdapter->migrate($oPluginRegistry); $pluginAdapter->migrate($oPluginRegistry);