From: Florent Bruneau Date: Sat, 10 Apr 2010 11:19:00 +0000 (+0200) Subject: Fix references to undefined variable. X-Git-Tag: xorg/1.0.0~307 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=b75ef9b2a5d7a0c09fa9aeac0738f4d27399e4c1;p=platal.git Fix references to undefined variable. Signed-off-by: Florent Bruneau --- diff --git a/modules/lists/lists.inc.php b/modules/lists/lists.inc.php index 38757c3..2307d9d 100644 --- a/modules/lists/lists.inc.php +++ b/modules/lists/lists.inc.php @@ -43,7 +43,7 @@ function list_sort_owners(&$members, $tri_promo = true) if ($tri_promo) { $promo = null; } - $membres[$key][$nom.$m] = Array('n' => $nom, 'l' => $m, 'p' => $promo, 'x' => $uid, 'b' => $broken); + $membres[$key][$nom.$mem] = Array('n' => $nom, 'l' => $mem, 'p' => $promo, 'x' => $uid, 'b' => $broken); } }