From 467cabc56705eaf8e1180fb95ecf79be94acb84a Mon Sep 17 00:00:00 2001 From: "Pierre Habouzit (MadCoder" Date: Mon, 23 May 2005 12:59:35 +0000 Subject: [PATCH] backport Patches applied: * opensource@polytechnique.org--2005/platal--release--0.9.6--patch-17 little bug : show address, not mbox only git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-652 --- include/lists.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lists.inc.php b/include/lists.inc.php index 0df70b2..4d438c7 100644 --- a/include/lists.inc.php +++ b/include/lists.inc.php @@ -61,7 +61,7 @@ function list_sort_owners(&$members, $tri_promo = true) { $res = $globals->xdb->query('SELECT prenom, nom FROM groupex.membres WHERE email={?}', $mem); if (list($prenom, $nom) = $res->fetchOneRow()) { $key = $tri_promo ? 0 : strtoupper($nom{0}); - $membres[$key][$nom.$m] = Array('n' => "$prenom $nom", 'l' => $m); + $membres[$key][$nom.$m] = Array('n' => "$prenom $nom", 'l' => $mem); } else { $membres[0][] = Array('l' => $mem); } -- 2.1.4