From 9d737e56be627353a284cf54b4bde101724e3010 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Jacob?= Date: Sat, 17 Jul 2010 13:26:59 +0200 Subject: [PATCH] Broken is dealt with in the profile display plugin. 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 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/lists/lists.inc.php b/modules/lists/lists.inc.php index 2307d9d..92d2c61 100644 --- a/modules/lists/lists.inc.php +++ b/modules/lists/lists.inc.php @@ -38,12 +38,11 @@ function list_sort_owners(&$members, $tri_promo = true) if (!$promo) { $promo = 'non-X'; } - $broken = false; # XXX: fill it with the good value if the user has no valid email $key = $tri_promo ? ($promo != 'non-X' ? $promo : 0) : strtoupper(@$nom{0}); if ($tri_promo) { $promo = null; } - $membres[$key][$nom.$mem] = Array('n' => $nom, 'l' => $mem, 'p' => $promo, 'x' => $uid, 'b' => $broken); + $membres[$key][$nom.$mem] = array('n' => $nom, 'l' => $mem, 'p' => $promo, 'x' => $uid); } } -- 2.1.4