Index: trunk/admin/install.php =================================================================== diff -u -r13 -r24 --- trunk/admin/install.php (.../install.php) (revision 13) +++ trunk/admin/install.php (.../install.php) (revision 24) @@ -491,6 +491,12 @@ } } + // upgrade language pack if some module upgrade options selected + if( isset($mod_arr) && is_array($mod_arr) ) + { + + } + $state = "finish"; $include_file = "install/install_finish.php"; } Index: trunk/admin/import/import.php =================================================================== diff -u -r13 -r24 --- trunk/admin/import/import.php (.../import.php) (revision 13) +++ trunk/admin/import/import.php (.../import.php) (revision 24) @@ -64,7 +64,7 @@ $admin = $objConfig->Get("AdminDirectory"); if(!strlen($admin)) $admin = "admin"; -print_pre($_REQUEST); + if ($_POST["Action"]=="Import") { $objSession->SetVariable("import_user_admin",$_POST["user_admin"]); Index: trunk/globals.php =================================================================== diff -u -r13 -r24 --- trunk/globals.php (.../globals.php) (revision 13) +++ trunk/globals.php (.../globals.php) (revision 24) @@ -1269,45 +1269,4 @@ return count($result) ? implode(' ', $result) : false; } -/* so I dont forget: - - the decrypt function is defined in adodb-time and is called xp() - - the keygen function is also declared in adodb-time as $b - and eval'd() in dates.php -*/ - - - -/* //this comes from line 15; moved by PSK for readability - - $g_DBType = "mysql"; - $g_DBHost = "kiev"; - - $g_DBUser = "root"; - $g_DBUserPassword = ""; - $g_DBName = "inportal"; - - -//$g_DBUser = "bloopered"; -//$g_DBUserPassword = "vFWPqJT017"; -//$g_DBName = "inportal"; - - $g_TablePrefix = ""; - - $g_EnableCookies = FALSE; - $g_SessionExpirationLimit = 3600*1; // 1 hour - -//$g_PrivateMessageExpirationLimit = 2592000; // 30 days -//$g_PrivateMessageThreadLimit = 50; -//$g_DebugMode=0; - -//$g_defaultLanguage = "English"; -//$g_defaultTheme = "default"; - - $g_TopRate = 4; - $g_PopRate = 80; - $g_NewDate = 5; - - - $g_adodbConnection=NULL; -*/ ?>