mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
fix error in filemanager notifications: notifications::set_popupdata(): Argument #1 ($_appname) must be of type string, null given
This commit is contained in:
parent
3ac7b858e4
commit
bd6a4c310d
@ -843,7 +843,7 @@ abstract class Tracking
|
|||||||
$notification->set_reply_to($reply_to);
|
$notification->set_reply_to($reply_to);
|
||||||
$notification->set_subject($subject);
|
$notification->set_subject($subject);
|
||||||
$notification->set_links(array($link));
|
$notification->set_links(array($link));
|
||||||
$notification->set_popupdata($link['app']??null, $link, $link['id']??null);
|
$notification->set_popupdata($link['app']??$this->app, $link, $link['id']??null);
|
||||||
if ($attachments && is_array($attachments))
|
if ($attachments && is_array($attachments))
|
||||||
{
|
{
|
||||||
$notification->set_attachments($attachments);
|
$notification->set_attachments($attachments);
|
||||||
|
Loading…
Reference in New Issue
Block a user