document.location.href='install/install.php'"; include_once ('includes/global.php'); include_once ('includes/functions_login.php'); include_once ('includes/functions_item.php'); if (eregi('logout', $_GET['option'])) { logout(); } include_once ('global_header.php'); if (isset($_GET['change_language'])) { $all_languages = list_languages('site'); if (in_array($_GET['change_language'], $all_languages)) { $session->set('site_lang', $_GET['change_language']); } $refresh_link = 'index.php'; $template_output .= '

' . MSG_SITE_LANG_CHANGED . '

Please click ' . MSG_HERE . ' ' . MSG_PAGE_DOESNT_REFRESH . '

'; $template_output .= ''; } else { include_once ('global_mainpage.php'); } include_once ('global_footer.php'); echo $template_output; ?>