diff options
author | thomascube <thomas@roundcube.net> | 2008-09-19 18:53:17 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-09-19 18:53:17 +0000 |
commit | 29111be3400bd3826f0d6f1f79c0aee935955546 (patch) | |
tree | fddb3cffd3f134d283fa388ecdb69d28761691ce /program | |
parent | 4f9e36dc7b09f312ad7a3aae8761dbb9aa78839b (diff) |
Don't set a hard-coded language in rcube_user
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_user.php b/program/include/rcube_user.php index cc09028f1..0f0301ca9 100644 --- a/program/include/rcube_user.php +++ b/program/include/rcube_user.php @@ -31,7 +31,7 @@ class rcube_user { public $ID = null; public $data = null; - public $language = 'en_US'; + public $language = null; private $db = null; |