Skip to content

Commit

Permalink
Fix: Bad order
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 3, 2011
1 parent 7343722 commit a840958
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions htdocs/adherents/fiche.php
Expand Up @@ -1040,9 +1040,7 @@
// 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.')';
Expand Down

0 comments on commit a840958

Please sign in to comment.