summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_addressbook.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-13 11:09:50 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-04-13 11:09:50 +0000
commitbe065cecd84a134c567f47a665ca95590a61c94b (patch)
tree6d08505682ec4999a49dbb7fe573158f4bae1dac /roundcubemail/program/include/rcube_addressbook.php
parent2aeb486b89a3afa16677d335b0b8245d5db4a8c0 (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
Diffstat (limited to 'roundcubemail/program/include/rcube_addressbook.php')
-rw-r--r--roundcubemail/program/include/rcube_addressbook.php2
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);