document.location.href='install/install.php'"; include_once ('includes/global.php'); include_once ('includes/functions_login.php'); include_once ('includes/functions_item.php'); if (stristr($_GET['option'], 'logout')) { 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 if (isset($_GET['change_skin'])) { $all_skins = list_skins('site'); if (in_array($_GET['default_theme'], $all_skins)) { $session->set('site_theme', $_GET['default_theme']); } $refresh_link = 'index.php'; $template_output .= '

' . MSG_SITE_SKIN_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; ?>