X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FGroup.php;h=8981e2c647ee35c488355ebb16e809794e212fca;hb=24d7ffa3fee7e3686589f29f005fb2c419c9985a;hp=d33690d580a48b3067b27accd7a9d6bea2fc9c9b;hpb=5a3991d4f7bc929c1087d9275716fc1c8cc299a6;p=friendica.git diff --git a/src/Model/Group.php b/src/Model/Group.php index d33690d580..8981e2c647 100644 --- a/src/Model/Group.php +++ b/src/Model/Group.php @@ -12,10 +12,6 @@ use Friendica\Core\Renderer; use Friendica\Database\DBA; use Friendica\Util\Security; -require_once 'boot.php'; -require_once 'include/dba.php'; -require_once 'include/text.php'; - /** * @brief functions for interacting with the group database table */ @@ -355,8 +351,6 @@ class Group extends BaseObject */ public static function sidebarWidget($every = 'contact', $each = 'group', $editmode = 'standard', $group_id = '', $cid = 0) { - $o = ''; - if (!local_user()) { return ''; } @@ -400,8 +394,8 @@ class Group extends BaseObject ]; } - // Don't show the groups when there is only one - if (count($display_groups) <= 2) { + // Don't show the groups on the network page when there is only one + if ((count($display_groups) <= 2) && ($each == 'network')) { return ''; }