forked from extern/egroupware
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 {
|
try {
|
||||||
$notification = new notification();
|
$notification = new notification();
|
||||||
$notification->set_receivers(array($user_or_lang));
|
$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_sender($this->user);
|
||||||
$notification->set_subject($subject);
|
$notification->set_subject($subject);
|
||||||
$notification->set_links(array($this->get_notification_link($data,$old)));
|
$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
|
* 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 $data
|
||||||
* @param array $old
|
* @param array $old
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function get_notification_body($data,$old)
|
function get_body($html_email = false, $data,$old)
|
||||||
{
|
{
|
||||||
$body = '';
|
$body = '';
|
||||||
// new or modified message
|
// new or modified message
|
||||||
|
Loading…
Reference in New Issue
Block a user