summaryrefslogtreecommitdiff
path: root/program/include/rcube_addressbook.php
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2011-04-13 11:09:50 +0000
committeralecpl <alec@alec.pl>2011-04-13 11:09:50 +0000
commit34d72878dba086a8f63420a957518616ba243a3b (patch)
treed0d4128b363bca1276a102d7246256232681523e /program/include/rcube_addressbook.php
parent5b67d35b596a916c6b5c2aab1727dc8b19e147e8 (diff)
- Use mbstring's strtolower() for Unicode characters in normalize_string()
Diffstat (limited to 'program/include/rcube_addressbook.php')
-rw-r--r--program/include/rcube_addressbook.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_addressbook.php b/program/include/rcube_addressbook.php
index 10477e8a1..e4deea1d1 100644
--- a/program/include/rcube_addressbook.php
+++ b/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);