forked from extern/egroupware
Infolog: Make sure to use the current user as set in Tracking, rather than $GLOBALS[egw_info']['user']['ccount_id'] when getting reply_to because we change the GLOBALS user when generating the notification.
This commit is contained in:
parent
063c772fbb
commit
245fbb2d82
@ -328,8 +328,10 @@ class infolog_tracking extends Api\Storage\Tracking
|
|||||||
switch($name)
|
switch($name)
|
||||||
{
|
{
|
||||||
case 'reply_to': // for async notification use owner of infolog, otherwise the user causing the change
|
case 'reply_to': // for async notification use owner of infolog, otherwise the user causing the change
|
||||||
if (($reply_to = Api\Accounts::getInstance()->id2name(!empty($GLOBALS['egw_info']['flags']['async-service']) ?
|
if(($reply_to = Api\Accounts::getInstance()
|
||||||
$data['info_owner'] : $GLOBALS['egw_info']['user']['account_id'], 'account_email')))
|
->id2name(!empty($GLOBALS['egw_info']['flags']['async-service']) ?
|
||||||
|
$data['info_owner'] : $this->user, 'account_email'
|
||||||
|
)))
|
||||||
{
|
{
|
||||||
$config = $reply_to;
|
$config = $reply_to;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user