diff --git a/src/Model/Item.php b/src/Model/Item.php index 8125c4ac71..c16281ae3e 100644 --- a/src/Model/Item.php +++ b/src/Model/Item.php @@ -863,7 +863,7 @@ class Item extends BaseObject unset($item['id']); - $condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND `rel` IN (?, ?)", + $condition = ["`nurl` IN (SELECT `nurl` FROM `contact` WHERE `id` = ?) AND `uid` != 0 AND NOT `blocked` AND NOT `readonly` AND `rel` IN (?, ?)", $parent['owner-id'], CONTACT_IS_SHARING, CONTACT_IS_FRIEND]; $contacts = dba::select('contact', ['uid'], $condition); while ($contact = dba::fetch($contacts)) {