T1697: Fix regression in selecting delegator's folders for itip invitation handling

This commit is contained in:
Aleksander Machniak 2016-10-18 08:49:32 +02:00
parent 7fe3910a73
commit c2631131ed

View file

@ -792,10 +792,10 @@ class kolab_delegation_engine
$storage = $this->rc->get_storage(); $storage = $this->rc->get_storage();
$other_ns = $storage->get_namespace('other'); $other_ns = $storage->get_namespace('other');
$delim = $storage->get_hierarchy_delimiter(); $delim = $storage->get_hierarchy_delimiter();
$editable = $filter & calendar_driver::FILTER_WRITEABLE; $editable = $args['filter'] & calendar_driver::FILTER_WRITEABLE;
$active = $filter & calendar_driver::FILTER_ACTIVE; $active = $args['filter'] & calendar_driver::FILTER_ACTIVE;
$personal = $filter & calendar_driver::FILTER_PERSONAL; $personal = $args['filter'] & calendar_driver::FILTER_PERSONAL;
$shared = $filter & calendar_driver::FILTER_SHARED; $shared = $args['filter'] & calendar_driver::FILTER_SHARED;
$calendars = array(); $calendars = array();
// code parts derived from kolab_driver::filter_calendars() // code parts derived from kolab_driver::filter_calendars()