From 6d8afb8585e20d64e86043111c240d5e15d8acaf Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Jacob?= Date: Wed, 9 Feb 2011 11:36:19 +0100 Subject: [PATCH] Fixes membres ordering in MLs (Closes #1387). MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Jacob --- modules/lists/lists.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/lists/lists.inc.php b/modules/lists/lists.inc.php index bba0ff0..cfda3c1 100644 --- a/modules/lists/lists.inc.php +++ b/modules/lists/lists.inc.php @@ -48,7 +48,7 @@ function list_sort_owners($members, $tri_promo = true) ksort($membres); foreach($membres as &$membre) { - ksort($membre); + uksort($membre, strcasecmp); } return $membres; } -- 2.1.4