From 8c86d1529a95304da6e019ff983e88ed5758af3a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sun, 2 Oct 2005 19:43:11 +0000 Subject: [PATCH] =?UTF-8?q?Ajout=20propri=E9t=E9=20fullname=20sur=20objet?= =?UTF-8?q?=20adh=E9rent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/adherents/adherent.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/htdocs/adherents/adherent.class.php b/htdocs/adherents/adherent.class.php index 452603bc1d9..67254a35f16 100644 --- a/htdocs/adherents/adherent.class.php +++ b/htdocs/adherents/adherent.class.php @@ -488,6 +488,7 @@ class Adherent $this->date = $obj->datedon; $this->prenom = stripslashes($obj->prenom); $this->nom = stripslashes($obj->nom); + $this->fullname = $obj->nom.($obj->nom&&$obj->prenom?' ':'').$obj->prenom; $this->societe = stripslashes($obj->societe); $this->adresse = stripslashes($obj->adresse); $this->cp = stripslashes($obj->cp);