From: Michael Date: Fri, 20 Mar 2020 04:52:04 +0000 (+0000) Subject: Issue 8371 again: Fallback for item permissions X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2234a095c61f71b97161255887cc1268b691ea25;p=friendica.git Issue 8371 again: Fallback for item permissions --- diff --git a/mod/item.php b/mod/item.php index 3566e2150c..c189414710 100644 --- a/mod/item.php +++ b/mod/item.php @@ -128,7 +128,7 @@ function item_post(App $a) { $thread_parent_contact = Contact::getDetailsByURL($toplevel_item["author-link"]); if ($toplevel_item['id'] != $toplevel_item['parent']) { - $toplevel_item = Item::selectFirst(Item::ITEM_FIELDLIST, ['id' => $toplevel_item['parent']]); + $toplevel_item = Item::selectFirst([], ['id' => $toplevel_item['parent']]); } } @@ -298,10 +298,10 @@ function item_post(App $a) { $network = $toplevel_item['network']; } - $str_contact_allow = $toplevel_item['allow_cid']; - $str_group_allow = $toplevel_item['allow_gid']; - $str_contact_deny = $toplevel_item['deny_cid']; - $str_group_deny = $toplevel_item['deny_gid']; + $str_contact_allow = $toplevel_item['allow_cid'] ?? ''; + $str_group_allow = $toplevel_item['allow_gid'] ?? ''; + $str_contact_deny = $toplevel_item['deny_cid'] ?? ''; + $str_group_deny = $toplevel_item['deny_gid'] ?? ''; $private = $toplevel_item['private']; $wall = $toplevel_item['wall'];