From 2f590b2e07834a5e055cd1a2403184e7fcd86e45 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 28 Feb 2021 07:44:36 -0500 Subject: [PATCH] Fix condition formatting in view/theme/frio/theme.php --- view/theme/frio/theme.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/view/theme/frio/theme.php b/view/theme/frio/theme.php index de7c14f84a..cbc3b0f04c 100644 --- a/view/theme/frio/theme.php +++ b/view/theme/frio/theme.php @@ -314,8 +314,9 @@ function frio_display_item(App $a, &$arr) local_user() && local_user() == $arr['item']['uid'] && $arr['item']['gravity'] == GRAVITY_PARENT - && !$arr['item']['self'] && !$arr['item']['mention']) - { + && !$arr['item']['self'] + && !$arr['item']['mention'] + ) { $followThread = [ 'menu' => 'follow_thread', 'title' => DI::l10n()->t('Follow Thread'),