Skip to content
Snippets Groups Projects
Commit a4126fae authored by Florian Henry's avatar Florian Henry
Browse files

[ bug #1341 ] Lastname not added by file or direct input in mass

e-mailing
parent 4fa47251
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,7 @@ Fix: Error on field accountancy code for export profile of invoices.
Fix: [ bug #1351 ] VIES verification link broken.
Fix: [ bug #1352 ] Removing a shipping does not remove the delivery.
Fix: Option MAIN_INVERT_SENDER_RECIPIENT broken with typhon template.
Fix: [ bug #1341 ] Lastname not added by file or direct input in mass e-mailing
***** ChangeLog for 3.5.2 compared to 3.5.1 *****
......
......@@ -166,7 +166,7 @@ class mailing_xinputfile extends MailingTargets
{
$cibles[$j] = array(
'email' => $email,
'name' => $name,
'lastname' => $name,
'firstname' => $firstname,
'other' => $other,
'source_url' => '',
......
......@@ -134,7 +134,7 @@ class mailing_xinputuser extends MailingTargets
{
$cibles[] = array(
'email' => $email,
'name' => $lastname,
'lastname' => $lastname,
'firstname' => $firstname,
'other' => $other,
'source_url' => '',
......
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