diff options
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 7 |
1 files changed, 6 insertions, 1 deletions
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; |