kopia lustrzana https://github.com/friendica/friendica
Fix enotify item link
rodzic
443e106105
commit
ff9eb20663
|
@ -483,24 +483,24 @@ function notification($params)
|
||||||
|
|
||||||
if ($show_in_notification_page) {
|
if ($show_in_notification_page) {
|
||||||
$notification = DI::notify()->insert([
|
$notification = DI::notify()->insert([
|
||||||
'name' => $params['source_name'],
|
'name' => $params['source_name'],
|
||||||
'name_cache' => strip_tags(BBCode::convert($params['source_name'])),
|
'name_cache' => strip_tags(BBCode::convert($params['source_name'])),
|
||||||
'url' => $params['source_link'],
|
'url' => $params['source_link'],
|
||||||
'photo' => $params['source_photo'],
|
'photo' => $params['source_photo'],
|
||||||
'uid' => $params['uid'],
|
'link' => $itemlink,
|
||||||
'iid' => $item_id,
|
'uid' => $params['uid'],
|
||||||
'parent' => $parent_id,
|
'iid' => $item_id,
|
||||||
'type' => $params['type'],
|
'parent' => $parent_id,
|
||||||
'verb' => $params['verb'],
|
'type' => $params['type'],
|
||||||
'otype' => $params['otype'],
|
'verb' => $params['verb'],
|
||||||
|
'otype' => $params['otype'],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$notification->link = DI::baseUrl() . '/notification/view/' . $notification->id;
|
$notification->msg = Renderer::replaceMacros($epreamble, ['$itemlink' => $notification->link]);
|
||||||
$notification->msg = Renderer::replaceMacros($epreamble, ['$itemlink' => $notification->link]);
|
|
||||||
|
|
||||||
DI::notify()->update($notification);
|
DI::notify()->update($notification);
|
||||||
|
|
||||||
$itemlink = $notification->link;
|
$itemlink = DI::baseUrl() . '/notification/view/' . $notification->id;
|
||||||
$notify_id = $notification->id;
|
$notify_id = $notification->id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue