From c2631131edf1f7b6053b6826d79e9638f472789b Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Tue, 18 Oct 2016 08:49:32 +0200 Subject: [PATCH] T1697: Fix regression in selecting delegator's folders for itip invitation handling --- plugins/kolab_delegation/kolab_delegation_engine.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/kolab_delegation/kolab_delegation_engine.php b/plugins/kolab_delegation/kolab_delegation_engine.php index ca3637fa..de1d9cf8 100644 --- a/plugins/kolab_delegation/kolab_delegation_engine.php +++ b/plugins/kolab_delegation/kolab_delegation_engine.php @@ -792,10 +792,10 @@ class kolab_delegation_engine $storage = $this->rc->get_storage(); $other_ns = $storage->get_namespace('other'); $delim = $storage->get_hierarchy_delimiter(); - $editable = $filter & calendar_driver::FILTER_WRITEABLE; - $active = $filter & calendar_driver::FILTER_ACTIVE; - $personal = $filter & calendar_driver::FILTER_PERSONAL; - $shared = $filter & calendar_driver::FILTER_SHARED; + $editable = $args['filter'] & calendar_driver::FILTER_WRITEABLE; + $active = $args['filter'] & calendar_driver::FILTER_ACTIVE; + $personal = $args['filter'] & calendar_driver::FILTER_PERSONAL; + $shared = $args['filter'] & calendar_driver::FILTER_SHARED; $calendars = array(); // code parts derived from kolab_driver::filter_calendars()