From 4de197fd8ae8a3dc86be9117914cf262f362d334 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 31 Oct 2013 11:30:41 +0000 Subject: [PATCH] * CalDAV: fixed wrong http-status for delete in inbox --- phpgwapi/inc/class.groupdav.inc.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/phpgwapi/inc/class.groupdav.inc.php b/phpgwapi/inc/class.groupdav.inc.php index bddd80092e..340b5b4dde 100644 --- a/phpgwapi/inc/class.groupdav.inc.php +++ b/phpgwapi/inc/class.groupdav.inc.php @@ -1475,6 +1475,11 @@ class groupdav extends HTTP_WebDAV_Server { $user_prefix = '/'.$user; $user = $account_id; + // //inbox/ + if ($user == $GLOBALS['egw_info']['user']['account_id'] && $app == 'inbox') + { + $app = 'calendar'; + } } else {