* CalDAV: fixed wrong http-status for delete in inbox

This commit is contained in:
Ralf Becker 2013-10-31 11:30:41 +00:00
parent ac315dafe2
commit 4de197fd8a

View File

@ -1475,6 +1475,11 @@ class groupdav extends HTTP_WebDAV_Server
{
$user_prefix = '/'.$user;
$user = $account_id;
// /<currentuser>/inbox/
if ($user == $GLOBALS['egw_info']['user']['account_id'] && $app == 'inbox')
{
$app = 'calendar';
}
}
else
{