From a762e8b2830176c39147519decb0358660d32c91 Mon Sep 17 00:00:00 2001 From: alec Date: Mon, 10 May 2010 19:43:17 +0000 Subject: - Use strcoll instead of strcmp when sorting contacts in autocomplete git-svn-id: https://svn.roundcube.net/trunk@3609 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/mail/autocomplete.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcubemail/program/steps/mail/autocomplete.inc b/roundcubemail/program/steps/mail/autocomplete.inc index 4e6c617d3..2fb5eb6db 100644 --- a/roundcubemail/program/steps/mail/autocomplete.inc +++ b/roundcubemail/program/steps/mail/autocomplete.inc @@ -77,7 +77,7 @@ function contact_results_sort($a, $b) { $name_a = is_array($a) ? $a['name'] : $a; $name_b = is_array($b) ? $b['name'] : $b; - return strcmp(trim($name_a, '" '), trim($name_b, '" ')); + return strcoll(trim($name_a, '" '), trim($name_b, '" ')); } ?> -- cgit v1.2.3