From 183a326cb08a866c40ef0cfed5035a29ac40484d Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 15 Aug 2013 16:02:52 +0000 Subject: [PATCH] * Calendar: fixed not working filter "only group events", to not include events of members --- calendar/inc/class.calendar_bo.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/calendar/inc/class.calendar_bo.inc.php b/calendar/inc/class.calendar_bo.inc.php index 789dbcaf68..0758a3a3dc 100644 --- a/calendar/inc/class.calendar_bo.inc.php +++ b/calendar/inc/class.calendar_bo.inc.php @@ -351,7 +351,7 @@ class calendar_bo // for groups we have to include the members if ($GLOBALS['egw']->accounts->get_type($user) == 'g') { - if ($params['filter'] == 'no-enum-groups') continue; + if ($no_enum_groups) continue; $members = $GLOBALS['egw']->accounts->member($user); if (is_array($members))