alecpl
2011-04-13 34d72878dba086a8f63420a957518616ba243a3b
- Use mbstring's strtolower() for Unicode characters in normalize_string()


1 files modified
2 ■■■ changed files
program/include/rcube_addressbook.php 2 ●●● patch | view | raw | blame | history
program/include/rcube_addressbook.php
@@ -411,7 +411,7 @@
                    array('ß' => 'ss', 'ae' => 'a', 'oe' => 'o', 'ue' => 'u')));
            }
            else
                $arr[$i] = strtolower($part);
                $arr[$i] = mb_strtolower($part);
        }
        
        return join(" ", $arr);