From a3a2147def3ae9022a545a5c66e67ac6a68a5b79 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 24 Nov 2018 12:10:30 +0000 Subject: [PATCH] Don't show the group filter where there is only one --- src/Model/Group.php | 5 +++++ 1 file changed, 5 insertions(+) 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'),