mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 10:53:39 +01:00
Fix WebDAV support for Bitkinex client (EGw.org#2650)
This commit is contained in:
parent
0d925fd9fd
commit
97449cce68
@ -97,9 +97,11 @@ $GLOBALS['egw']->session->commit_session();
|
|||||||
|
|
||||||
$webdav_server = new vfs_webdav_server();
|
$webdav_server = new vfs_webdav_server();
|
||||||
$user_agent = strtolower($_SERVER['HTTP_USER_AGENT']);
|
$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->cnrnd = true;
|
||||||
}
|
}
|
||||||
$webdav_server->ServeRequest();
|
$webdav_server->ServeRequest();
|
||||||
|
Loading…
Reference in New Issue
Block a user