BUG 10190 "Sale un comentario de fallado al realizar..." SOLVED

- To upgrade the system with:
    php -f processmaker upgrade
  No complete the upgrade, can't load all system classes
- Fixed, now be load all classes with Bootstrap class
* Available from version ProcessMaker-2.0.46
This commit is contained in:
Victor Saisa Lopez
2012-12-14 16:42:57 -04:00
parent ae4fb31012
commit a73fa693f1
5 changed files with 278 additions and 261 deletions

View File

@@ -282,14 +282,14 @@ class workspaceTools
public function upgradeContent ($workSpace = SYS_SYS)
{
$this->initPropel( true );
require_once 'classes/model/Translation.php';
//require_once 'classes/model/Translation.php';
$translation = new Translation();
$information = $translation->getTranslationEnvironments();
$arrayLang = array ();
foreach ($information as $key => $value) {
$arrayLang[] = trim( $value['LOCALE'] );
}
require_once ('classes/model/Content.php');
//require_once ('classes/model/Content.php');
$regenerateContent = new Content();
$regenerateContent->regenerateContent( $arrayLang, $workSpace );
}
@@ -302,7 +302,7 @@ class workspaceTools
public function upgradeTranslation ($first = true)
{
$this->initPropel( true );
require_once ('classes/model/Language.php');
//require_once ('classes/model/Language.php');
G::LoadThirdParty( 'pear/json', 'class.json' );
foreach (System::listPoFiles() as $poFile) {
$poName = basename( $poFile );
@@ -433,10 +433,11 @@ class workspaceTools
$lang = "en";
require_once ('classes/model/AppCacheView.php');
//require_once ('classes/model/AppCacheView.php');
//check the language, if no info in config about language, the default is 'en'
G::loadClass( 'configuration' );
G::LoadClass("configuration");
$oConf = new Configurations();
$oConf->loadConfig( $x, 'APP_CACHE_VIEW_ENGINE', '', '', '', '' );
$appCacheViewEngine = $oConf->aConfig;