mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-08 10:38:15 +01:00
Merge branch 'develop' of git@github.com:Dolibarr/dolibarr.git into develop
This commit is contained in:
@@ -131,13 +131,13 @@ class mailing_mailing_mymodule_selector1 extends MailingTargets
|
||||
$obj = $this->db->fetch_object($result);
|
||||
if ($old != $obj->email) {
|
||||
$target[$j] = array(
|
||||
'email' => $obj->email,
|
||||
'id' => $obj->id,
|
||||
'firstname' => $obj->firstname,
|
||||
'lastname' => $obj->lastname,
|
||||
//'other' => $obj->label,
|
||||
'email' => (string) $obj->email,
|
||||
'id' => (int) $obj->id,
|
||||
'firstname' => (string) $obj->firstname,
|
||||
'lastname' => (string) $obj->lastname,
|
||||
'other' => '', // (string) $obj->label,
|
||||
'source_url' => $this->url($obj->id),
|
||||
'source_id' => $obj->id,
|
||||
'source_id' => (int) $obj->id,
|
||||
'source_type' => 'myobject@mymodule'
|
||||
);
|
||||
$old = $obj->email;
|
||||
|
||||
Reference in New Issue
Block a user