Skip to content
Snippets Groups Projects
Commit 013eb704 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Pas de parenthèse si champ vide

parent a00bc1b7
No related branches found
No related tags found
No related merge requests found
......@@ -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++;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment