From: Michael Date: Sat, 24 Nov 2018 12:10:30 +0000 (+0000) Subject: Don't show the group filter where there is only one X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a3a2147def3ae9022a545a5c66e67ac6a68a5b79;p=friendica.git Don't show the group filter where there is only one --- diff --git a/src/Model/Group.php b/src/Model/Group.php index b32b61e103..1640cb87b1 100644 --- a/src/Model/Group.php +++ b/src/Model/Group.php @@ -400,6 +400,11 @@ class Group extends BaseObject ]; } + // Don't show the groups when there is only one + if (count($display_groups) <= 2) { + return ''; + } + $tpl = Renderer::getMarkupTemplate('group_side.tpl'); $o = Renderer::replaceMacros($tpl, [ '$add' => L10n::t('add'),