mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 15:33:23 +01:00
Fix DAV issue for neon
This commit is contained in:
parent
e8298f217f
commit
854c5a83a0
@ -86,9 +86,10 @@ $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)
|
||||
{
|
||||
// Windows 7 special treatment
|
||||
// Neon & Windows 7 special treatment
|
||||
$webdav_server->cnrnd = true;
|
||||
}
|
||||
$webdav_server->ServeRequest();
|
||||
|
Loading…
Reference in New Issue
Block a user