From 48f323431801d09e95f891b6722f482243c167fc Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 4 May 2020 14:50:22 +0000 Subject: [PATCH] Useless space and useless "null" check --- include/enotify.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/enotify.php b/include/enotify.php index 81b491ade5..ae2e2e7fef 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -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'] ?? '',