mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-08 22:40:23 +01:00
* WebDAV: fix for Netdrive to work correct with non-ascii chars like German umlauts
- unfortunatly Netdrive uses no User-Agent header, so we can only detect it on the absense of one - we use now rawurlencode with replacing / and : afterwards, instead of the minimal version, which is the default
This commit is contained in:
parent
a13283e39d
commit
d10b19485e
@ -2490,7 +2490,8 @@ class HTTP_WebDAV_Server
|
||||
{
|
||||
// cadaver (and probably all neon using agents) need a more complete url encoding
|
||||
// otherwise special chars like "$,()'" in filenames do NOT work
|
||||
if (strpos($_SERVER['HTTP_USER_AGENT'],'neon') !== false)
|
||||
// netdrive does NOT use a User-Agent, but requires full urlencoding for non-ascii chars (eg. German Umlauts)
|
||||
if (strpos($_SERVER['HTTP_USER_AGENT'],'neon') !== false || !isset($_SERVER['HTTP_USER_AGENT']))
|
||||
{
|
||||
return strtr(rawurlencode($url),array(
|
||||
'%2F' => '/',
|
||||
|
Loading…
Reference in New Issue
Block a user