Index: branches/unlabeled/unlabeled-1.1.2/admin/install_over_kx.php =================================================================== diff -u -r6992 -r6993 --- branches/unlabeled/unlabeled-1.1.2/admin/install_over_kx.php (.../install_over_kx.php) (revision 6992) +++ branches/unlabeled/unlabeled-1.1.2/admin/install_over_kx.php (.../install_over_kx.php) (revision 6993) @@ -35,7 +35,20 @@ $sql = 'DELETE FROM '.TABLE_PREFIX.'Cache WHERE (VarName = "config_files") OR (VarName LIKE "%_parsed")'; $application->Conn->Query($sql); + echo '4. Importing Language Pack
'; + $lang_xml =& $application->recallObjectP('LangXML', null, Array(), false); // false - don't use temp tables + /* @var $lang_xml LangXML_Parser */ + + $lang_xml->Parse(FULL_PATH.'/admin/install/langpacks/english.lang', '|0|1|2|', ''); + + echo '5. Verifying License Status
'; + $modules_helper =& $application->recallObject('kModulesHelper'); + /* @var $modules_helper kModulesHelper */ + + $modules = $modules_helper->checkLogin(); + $next_url = in_array('In-Portal', $modules) ? 'index.php' : 'install.php?install_type=5&state=license&next_step=2'; + echo 'Done
'; ?> -Proceed to Admin \ No newline at end of file +Proceed to Admin \ No newline at end of file