From 4096c840aa042e7f47e3349f0df8f3bad89459e7 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Thu, 4 Oct 2007 20:03:00 +0000 Subject: [PATCH] Fix: Le nom etait perdu dans mail --- htdocs/adherents/adherent.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/adherents/adherent.class.php b/htdocs/adherents/adherent.class.php index 3c9a53fd1b2..b0173e927c3 100644 --- a/htdocs/adherents/adherent.class.php +++ b/htdocs/adherents/adherent.class.php @@ -158,7 +158,7 @@ class Adherent '/%PASSWORD%/' ); $infos.= $langs->trans("Lastname").": $this->nom\n"; - $infos = $langs->trans("Firstname").": $this->prenom\n"; + $infos.= $langs->trans("Firstname").": $this->prenom\n"; $infos.= $langs->trans("Company").": $this->societe\n"; $infos.= $langs->trans("Address").": $this->adresse\n"; $infos.= $langs->trans("Zip").": $this->cp\n";