This commit is contained in:
Roly Rudy Gutierrez Pinto
2016-08-13 13:52:07 -04:00
parent d00750a593
commit 2674553982
3 changed files with 19 additions and 1 deletions

View File

@@ -740,6 +740,7 @@ class workspaceTools
$this->checkRbacPermissions();//check or add new permissions
$this->checkSequenceNumber();
$this->migrateIteeToDummytask($this->name);
$this->upgradeConfiguration();
//There records in table "EMAIL_SERVER"
$criteria = new Criteria("workflow");
@@ -3243,4 +3244,12 @@ class workspaceTools
CLI::logging($message);
}
public function upgradeConfiguration()
{
G::LoadClass("configuration");
$conf = new Configurations();
$conf->aConfig = 'neoclassic';
$conf->saveConfig('SKIN_CRON', '');
}
}