diff --git a/webdav.php b/webdav.php index 5cb1b17107..e6ae0f41e6 100644 --- a/webdav.php +++ b/webdav.php @@ -97,9 +97,11 @@ $GLOBALS['egw']->session->commit_session(); $webdav_server = new vfs_webdav_server(); $user_agent = strtolower($_SERVER['HTTP_USER_AGENT']); -if (strstr($user_agent, 'microsoft-webdav') !== false) +if (strstr($user_agent, 'microsoft-webdav') !== false || + strstr($user_agent, 'neon') !== false || + strstr($user_agent, 'bitkinex') !== false) { - // Windows 7 special treatment + // Windows 7 et.al. special treatment $webdav_server->cnrnd = true; } $webdav_server->ServeRequest();