Don't show the group filter where there is only one
authorMichael <heluecht@pirati.ca>
Sat, 24 Nov 2018 12:10:30 +0000 (12:10 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 24 Nov 2018 12:10:30 +0000 (12:10 +0000)
src/Model/Group.php

index b32b61e..1640cb8 100644 (file)
@@ -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'),