From f9c5c02a55110ad7a024149466150272107a1d03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Lehrke?= Date: Fri, 11 Jun 2010 09:06:05 +0000 Subject: [PATCH] Fix WebDAV support for Bitkinex client (EGw.org#2650) --- webdav.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webdav.php b/webdav.php index cba7d3b693..f7e2a138f0 100644 --- a/webdav.php +++ b/webdav.php @@ -87,9 +87,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 || - strstr($user_agent, 'neon') !== false) + strstr($user_agent, 'neon') !== false || + strstr($user_agent, 'bitkinex') !== false) { - // neon & Windows 7 special treatment + // Windows 7 et.al. special treatment $webdav_server->cnrnd = true; } $webdav_server->ServeRequest();