diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-04-13 11:09:50 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2011-04-13 11:09:50 +0000 |
| commit | be065cecd84a134c567f47a665ca95590a61c94b (patch) | |
| tree | 6d08505682ec4999a49dbb7fe573158f4bae1dac | |
| parent | 2aeb486b89a3afa16677d335b0b8245d5db4a8c0 (diff) | |
- Use mbstring's strtolower() for Unicode characters in normalize_string()
git-svn-id: https://svn.roundcube.net/trunk@4652 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/program/include/rcube_addressbook.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_addressbook.php b/roundcubemail/program/include/rcube_addressbook.php index 10477e8a1..e4deea1d1 100644 --- a/roundcubemail/program/include/rcube_addressbook.php +++ b/roundcubemail/program/include/rcube_addressbook.php @@ -411,7 +411,7 @@ abstract class rcube_addressbook array('ß' => 'ss', 'ae' => 'a', 'oe' => 'o', 'ue' => 'u'))); } else - $arr[$i] = strtolower($part); + $arr[$i] = mb_strtolower($part); } return join(" ", $arr); |
