From 43e290f4c05e9b558abd8118f2282898f3d488f8 Mon Sep 17 00:00:00 2001 From: friendica Date: Fri, 20 Sep 2013 19:14:57 -0700 Subject: fix contact comment permissions --- include/items.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'include/items.php') diff --git a/include/items.php b/include/items.php index 4e8a5c46f..37ff7db3c 100755 --- a/include/items.php +++ b/include/items.php @@ -80,8 +80,13 @@ function can_comment_on_post($observer_xchan,$item) { break; case 'contacts': case '': - if(($item['owner']['abook_xchan']) && ($item['owner']['abook_their_perms'] & PERMS_W_COMMENT)) + if(array_key_exists('owner',$item)) { + if(($item['owner']['abook_xchan']) && ($item['owner']['abook_their_perms'] & PERMS_W_COMMENT)) + return true; + } + else { return true; + } break; default: break; -- cgit v1.2.3