Use public property instead of setter method to improve compatibility
This commit is contained in:
parent
f2e66acc6a
commit
269f8e2ff4
3 changed files with 4 additions and 4 deletions
|
@ -303,7 +303,7 @@ class kolab_calendar extends kolab_storage_folder_api
|
|||
}
|
||||
|
||||
// avoid session race conditions that will loose temporary subscriptions
|
||||
$this->cal->rc->session->nowrite();
|
||||
$this->cal->rc->session->nowrite = true;
|
||||
|
||||
return $events;
|
||||
}
|
||||
|
|
|
@ -223,7 +223,7 @@ class kolab_user_calendar extends kolab_calendar
|
|||
}
|
||||
|
||||
// avoid session race conditions that will loose temporary subscriptions
|
||||
$this->cal->rc->session->nowrite();
|
||||
$this->cal->rc->session->nowrite = true;
|
||||
|
||||
return $events;
|
||||
}
|
||||
|
|
|
@ -482,7 +482,7 @@ class tasklist_kolab_driver extends tasklist_driver
|
|||
}
|
||||
|
||||
// avoid session race conditions that will loose temporary subscriptions
|
||||
$this->plugin->rc->session->nowrite();
|
||||
$this->plugin->rc->session->nowrite = true;
|
||||
|
||||
return $counts;
|
||||
}
|
||||
|
@ -541,7 +541,7 @@ class tasklist_kolab_driver extends tasklist_driver
|
|||
}
|
||||
|
||||
// avoid session race conditions that will loose temporary subscriptions
|
||||
$this->plugin->rc->session->nowrite();
|
||||
$this->plugin->rc->session->nowrite = true;
|
||||
|
||||
return $results;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue