mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-14 20:14:11 +01:00
detect user language
This commit is contained in:
parent
c80df96eca
commit
719ebac10c
@ -256,7 +256,11 @@
|
||||
|
||||
if (! $prefs->account_id)
|
||||
{
|
||||
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] = 'en';
|
||||
// Default to the first language, the users browser accepts.
|
||||
list($lang) = explode(',',$_SERVER["HTTP_ACCEPT_LANGUAGE"]);
|
||||
$lang = substr($lang,0,2);
|
||||
if(strlen($lang) != 2) $lang="en";
|
||||
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] = $lang;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user