Add default values for inserts

This commit is contained in:
Philipp Holzer 2020-01-28 22:26:23 +01:00
parent 2b433e0ea6
commit 91707a530c
No known key found for this signature in database
GPG Key ID: D8365C3D36B77D90
1 changed files with 11 additions and 11 deletions

View File

@ -483,17 +483,17 @@ function notification($params)
if ($show_in_notification_page) {
$notification = DI::notify()->insert([
'name' => $params['source_name'],
'name_cache' => strip_tags(BBCode::convert($params['source_name'])),
'url' => $params['source_link'],
'photo' => $params['source_photo'],
'link' => $itemlink,
'uid' => $params['uid'],
'iid' => $item_id,
'parent' => $parent_id,
'type' => $params['type'],
'verb' => $params['verb'],
'otype' => $params['otype'],
'name' => $params['source_name'] ?? '',
'name_cache' => strip_tags(BBCode::convert($params['source_name'] ?? '')),
'url' => $params['source_link'] ?? '',
'photo' => $params['source_photo'] ?? '',
'link' => $itemlink ?? '',
'uid' => $params['uid'] ?? 0,
'iid' => $item_id ?? 0,
'parent' => $parent_id ?? 0,
'type' => $params['type'] ?? '',
'verb' => $params['verb'] ?? '',
'otype' => $params['otype'] ?? '',
]);
$notification->msg = Renderer::replaceMacros($epreamble, ['$itemlink' => $notification->link]);