From: Roland Häder Date: Thu, 26 Jan 2017 15:01:56 +0000 (+0100) Subject: added spaces + some curly braces X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f7ceea7a85beb6c7fd63a2582957ced268b80da1;p=friendica.git added spaces + some curly braces Signed-off-by: Roland Häder --- diff --git a/include/conversation.php b/include/conversation.php index ae12cf4827..b52a8873df 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -395,7 +395,7 @@ function visible_activity($item) { } if (activity_match($item['verb'], ACTIVITY_FOLLOW) && $item['object-type'] === ACTIVITY_OBJ_NOTE) { - if (!($item['self'] && ($item['uid'] == local_user()))) { + if (!(x($item, 'self') && ($item['uid'] == local_user()))) { return false; } }