-
Notifications
You must be signed in to change notification settings - Fork 14
/
ch_lang.php
executable file
·39 lines (37 loc) · 1.41 KB
/
ch_lang.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!--
// =========================================================================
// ______
// / __/ /____ ________ ____ ___ _ ___ ___
// _\ \/ __/ _ `/ __/ _ `/ _ `/ ' \/ -_|_-<
// /___/\__/\_,_/_/ \_, /\_,_/_/_/_/\__/___/
// _____ /___/ __ ___ __
// / ___/__ ___ / /________ / / / _ \___ ____ ___ / /
// / /__/ _ \/ _ \/ __/ __/ _ \/ / / ___/ _ `/ _ \/ -_) /
// \___/\___/_//_/\__/_/ \___/_/ /_/ \_,_/_//_/\__/_/
// =========================================================================
// Copyright (c) Stargames Control Panel - Licensed under GNU GPL.
// See LICENSE File
// =========================================================================
// Project Lead by: Mysterious
// =========================================================================
-->
<?php
require_once "memory.php";
if(empty($POST_ch_lang) && !$CONFIG_language_select_mode) exit();
$HTTP_REFERER = get_referer();
if($POST_ch_lang!='') {
$dir = "lang/".$POST_ch_lang.".php";
if (is_file($dir)) {
$ch_lang = $POST_ch_lang;
} else {
$ch_lang = $CONFIG_language;
}
if($CONFIG_save_type==1) {
$_SESSION["userlang"] = $ch_lang;
} else {
CP_setCookie("userlang",$ch_lang);
//setcookie("userlang","$ch_lang",$CP[time]+60*60*24*30);
}
}
header("location:$HTTP_REFERER");
?>