mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:15 +01:00
fixed bug in new notifications: wrong function name and signature of get_body
This commit is contained in:
parent
7c29ffd4dc
commit
bcec4c6dbc
@ -374,7 +374,7 @@ class bo_tracking
|
||||
try {
|
||||
$notification = new notification();
|
||||
$notification->set_receivers(array($user_or_lang));
|
||||
$notification->set_message($this->get_notification_body($data,$old));
|
||||
$notification->set_message($this->get_body(false,$data,$old));
|
||||
$notification->set_sender($this->user);
|
||||
$notification->set_subject($subject);
|
||||
$notification->set_links(array($this->get_notification_link($data,$old)));
|
||||
@ -608,11 +608,12 @@ class bo_tracking
|
||||
/**
|
||||
* Get the body of the notification message for notification-app
|
||||
*
|
||||
* @param array $html_email - ignored till I find a solution for new notifications
|
||||
* @param array $data
|
||||
* @param array $old
|
||||
* @return string
|
||||
*/
|
||||
function get_notification_body($data,$old)
|
||||
function get_body($html_email = false, $data,$old)
|
||||
{
|
||||
$body = '';
|
||||
// new or modified message
|
||||
|
Loading…
Reference in New Issue
Block a user