mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Useless space and useless "null" check
This commit is contained in:
parent
49db63da2b
commit
48f3234318
1 changed files with 4 additions and 4 deletions
|
@ -470,10 +470,10 @@ function notification($params)
|
|||
'photo' => $params['source_photo'] ?? '',
|
||||
'link' => $itemlink ?? '',
|
||||
'uid' => $params['uid'] ?? 0,
|
||||
'iid' => $item_id ?? 0,
|
||||
'uri-id' => $uri_id ?? 0,
|
||||
'parent' => $parent_id ?? 0,
|
||||
'parent-uri-id' => $parent_uri_id ?? 0,
|
||||
'iid' => $item_id,
|
||||
'uri-id' => $uri_id,
|
||||
'parent' => $parent_id,
|
||||
'parent-uri-id' => $parent_uri_id,
|
||||
'type' => $params['type'] ?? '',
|
||||
'verb' => $params['verb'] ?? '',
|
||||
'otype' => $params['otype'] ?? '',
|
||||
|
|
Loading…
Reference in a new issue