T1697: Fix regression in selecting delegator's folders for itip invitation handling
This commit is contained in:
parent
7fe3910a73
commit
c2631131ed
1 changed files with 4 additions and 4 deletions
|
@ -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()
|
||||||
|
|
Loading…
Add table
Reference in a new issue