mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-22 21:30:54 +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
81620ec08e
commit
4b61724bd5
@ -843,7 +843,7 @@ abstract class Tracking
|
||||
$notification->set_reply_to($reply_to);
|
||||
$notification->set_subject($subject);
|
||||
$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))
|
||||
{
|
||||
$notification->set_attachments($attachments);
|
||||
|
Loading…
Reference in New Issue
Block a user