Merge pull request #391 from marcosgdf/minor

Fixed xinputuser emailing module
This commit is contained in:
Laurent Destailleur 2012-09-12 05:53:12 -07:00
commit c9678e3f1d
2 changed files with 2 additions and 1 deletions

View File

@ -53,6 +53,7 @@ New experimental modules:
- Fix: No images into product description lines as PDF generation does - Fix: No images into product description lines as PDF generation does
not work with this. not work with this.
- Fix: Errors weren't being shown in customer's & supplier's orders - Fix: Errors weren't being shown in customer's & supplier's orders
- Fix: Lastname wasn't being recorded in xinputuser emailing module
For developers: For developers:
- New: Add webservice for thirdparty creation and list. - New: Add webservice for thirdparty creation and list.

View File

@ -133,7 +133,7 @@ class mailing_xinputuser extends MailingTargets
{ {
$cibles[] = array( $cibles[] = array(
'email' => $email, 'email' => $email,
'name' => $name, 'name' => $lastname,
'firstname' => $firstname, 'firstname' => $firstname,
'other' => $other, 'other' => $other,
'source_url' => '', 'source_url' => '',