Index: branches/1.3.x/install/upgrades.php =================================================================== --- branches/1.3.x/install/upgrades.php (revision 16503) +++ branches/1.3.x/install/upgrades.php (revision 16504) @@ -1,65 +1,66 @@ dependencies = Array ( '1.0.0' => Array ('Core' => '5.0.0'), '1.0.1' => Array ('Core' => '5.0.1'), '1.0.2-B1' => Array ('Core' => '5.0.2-B1'), '1.0.2-B2' => Array ('Core' => '5.0.2-B2'), '1.0.2-RC1' => Array ('Core' => '5.0.2-RC1'), '1.0.2' => Array ('Core' => '5.0.2'), '1.0.3-B1' => Array ('Core' => '5.0.3-B1'), '1.0.3-RC1' => Array ('Core' => '5.0.3-RC1'), '1.0.3' => Array ('Core' => '5.0.3'), '1.0.4-B1' => Array ('Core' => '5.0.4-B1'), '1.0.4' => Array ('Core' => '5.0.4'), '1.1.0-B1' => Array ('Core' => '5.1.0-B1'), '1.1.0-B2' => Array ('Core' => '5.1.0-B2'), '1.1.0-RC1' => Array ('Core' => '5.1.0-RC1'), '1.1.0' => Array ('Core' => '5.1.0'), '1.1.1-B1' => Array ('Core' => '5.1.1-B1'), '1.1.1-RC1' => Array ('Core' => '5.1.1-RC1'), '1.1.1' => Array ('Core' => '5.1.1'), '1.1.2-B1' => Array ('Core' => '5.1.2-B1'), '1.1.2-RC1' => Array ('Core' => '5.1.2-RC1'), '1.1.2' => Array ('Core' => '5.1.2'), '1.1.3-B1' => Array ('Core' => '5.1.3-B1'), '1.1.3-B2' => Array ('Core' => '5.1.3-B2'), '1.1.3' => Array ('Core' => '5.1.3'), '1.2.0-B1' => Array ('Core' => '5.2.0-B1'), '1.2.0-B2' => Array ('Core' => '5.2.0-B2'), '1.2.0-B3' => Array ('Core' => '5.2.0-B3'), '1.2.0-RC1' => Array ('Core' => '5.2.0-RC1'), '1.2.0' => Array ('Core' => '5.2.0'), '1.2.1-B1' => Array ('Core' => '5.2.1-B1'), '1.2.1-B2' => Array ('Core' => '5.2.1-B2'), '1.2.1-RC1' => Array ('Core' => '5.2.1-RC1'), '1.2.1' => Array ('Core' => '5.2.1'), + '1.2.2-B1' => Array ('Core' => '5.2.2-B1'), ); } } Index: branches/1.3.x/install.php =================================================================== --- branches/1.3.x/install.php (revision 16503) +++ branches/1.3.x/install.php (revision 16504) @@ -1,38 +1,38 @@ toolkit; /* @var $toolkit kInstallToolkit */ } $application =& kApplication::Instance(); $application->Init(); if ( $application->RecallVar('user_id') != USER_ROOT ) { die('restricted access!'); } $toolkit->RunSQL('/' . $module_folder . '/install/install_schema.sql'); $toolkit->RunSQL('/' . $module_folder . '/install/install_data.sql'); -$toolkit->ImportLanguage('/' . $module_folder . '/install/english'); +$toolkit->ImportLanguage('/' . $module_folder . '/install/english', isset($constants_file)); -$toolkit->finalizeModuleInstall($module_folder, false); \ No newline at end of file +$toolkit->finalizeModuleInstall($module_folder, false); Property changes on: branches/1.3.x ___________________________________________________________________ Modified: svn:mergeinfo Merged /modules/custom/releases/1.2.2-B1:r16491 Merged /modules/custom/branches/1.2.x:r16449,16485