From 013eb704d7f4bca840d550dfc6c9f4b234cfca76 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Fri, 15 Apr 2005 18:35:25 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20Pas=20de=20parenth=E8se=20si=20champ=20v?= =?UTF-8?q?ide?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/user/group/fiche.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/htdocs/user/group/fiche.php b/htdocs/user/group/fiche.php index 66e1b5238a6..6c338b706ef 100644 --- a/htdocs/user/group/fiche.php +++ b/htdocs/user/group/fiche.php @@ -269,7 +269,8 @@ else { $obj = $db->fetch_object(); - $uss[$obj->rowid] = ucfirst(stripslashes($obj->name)).' '.ucfirst(stripslashes($obj->firstname).' ('.$obj->login.')'); + $uss[$obj->rowid] = ucfirst(stripslashes($obj->name)).' '.ucfirst(stripslashes($obj->firstname)); + if ($obj->login) $uss[$obj->rowid].=' ('.$obj->login.')'; $i++; } }