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

Fix: Bad order

parent 94b3ad8b
No related branches found
No related tags found
No related merge requests found
......@@ -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.')';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment