Fix: Bad order

This commit is contained in:
Laurent Destailleur 2011-02-03 00:46:30 +00:00
parent 94b3ad8be1
commit 818d21e359

View File

@ -1040,9 +1040,7 @@ if ($rowid && $action != 'edit')
// Confirm create third party
if ($_GET["action"] == 'create_thirdparty')
{
$name =$adh->nom;
if ($adh->nom && $adh->prenom) $name.=' ';
$name.=$adh->prenom;
$name = $adh->getFullName($langs);
if (! empty($name))
{
if ($adh->societe) $name.=' ('.$adh->societe.')';