set customer language to cookie

This commit is contained in:
Ibnu Maksum 2024-08-16 09:35:25 +07:00
parent 1c82378837
commit cf4f708f83
No known key found for this signature in database
GPG key ID: 7FC82848810579E5
2 changed files with 24 additions and 0 deletions

View file

@ -134,6 +134,8 @@ if ((!empty($radius_user) && $config['radius_enable']) || _post('radius_enable')
// Check if the user has selected a language
if (!empty($_SESSION['user_language'])) {
$config['language'] = $_SESSION['user_language'];
}else if (!empty($_COOKIE['user_language'])) {
$config['language'] = $_COOKIE['user_language'];
}
if (empty($_SESSION['Lang'])) {