* CalDAV: deleting an already declined invitation returned 403 Forbidden, instead 204 No Content

This commit is contained in:
Ralf Becker 2012-10-02 12:57:31 +00:00
parent fba3bda918
commit edba919994

View File

@ -1177,7 +1177,8 @@ class calendar_groupdav extends groupdav_handler
{
if ($this->bo->user == $uid || in_array($uid, $memberships))
{
if ($this->bo->set_status($event,$this->bo->user, 'R')) $ret = true;
$this->bo->set_status($event,$this->bo->user, 'R');
$ret = true;
break;
}
}