From 6d61bcf8ebf6e583a3d6eebd927a8da855d49805 Mon Sep 17 00:00:00 2001 From: alec Date: Sun, 16 Nov 2008 08:53:10 +0000 Subject: - Fix setting locale to tr_TR, ku and az_AZ (#1485470) git-svn-id: https://svn.roundcube.net/trunk@2060 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcmail.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'roundcubemail/program') diff --git a/roundcubemail/program/include/rcmail.php b/roundcubemail/program/include/rcmail.php index 7eade3223..9690d8d29 100644 --- a/roundcubemail/program/include/rcmail.php +++ b/roundcubemail/program/include/rcmail.php @@ -171,6 +171,10 @@ class rcmail // set localization setlocale(LC_ALL, $_SESSION['language'] . '.utf8', 'en_US.utf8'); + + // workaround for http://bugs.php.net/bug.php?id=18556 + if (in_array($_SESSION['language'], array('tr_TR', 'ku', 'az_AZ'))) + setlocale(LC_CTYPE, 'en_US' . '.utf8'); } -- cgit v1.2.3