From 8cf97f9717c61dcd3c5c34eb823ea658a4d5878c Mon Sep 17 00:00:00 2001 From: Florent Bruneau Date: Sun, 3 Oct 2010 12:36:58 +0200 Subject: [PATCH] When displaying members of a lists, sort by category, not by promotion. Signed-off-by: Florent Bruneau --- modules/lists/lists.inc.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/lists/lists.inc.php b/modules/lists/lists.inc.php index 217745a..0a8e0d2 100644 --- a/modules/lists/lists.inc.php +++ b/modules/lists/lists.inc.php @@ -30,15 +30,15 @@ function list_sort_owners(&$members, $tri_promo = true) foreach($members as $mem) { $user = User::getSilent($mem); if (!$user) { - $membres[0][] = array('l' => $mem, 'p' => (!$tri_promo ? 'inconnue' : null), 'n' => null, 'x' => null, 'b' => null); + $membres[0][] = array('l' => $mem, 'p' => (!$tri_promo ? 'inconnus' : null), 'n' => null, 'x' => null, 'b' => null); } else { $uid = $user->id(); $nom = $user->directoryName(); - $promo = $user->promo(); + $promo = $user->category(); if (!$promo) { - $promo = 'non-X'; + $promo = 'extérieurs'; } - $key = $tri_promo ? ($promo != 'non-X' ? $promo : 0) : strtoupper(@$nom{0}); + $key = $tri_promo ? ($promo != 'extérieurs' ? $promo : 0) : strtoupper(@$nom{0}); if ($tri_promo) { $promo = null; } -- 2.1.4