forked from extern/egroupware
* Filemanager/WebDAV: use full urlencoding for OS X Finder, fixes problems with non-ascii chars in file- or folder-names
we should probably allways do that, but that requires more checks with other user-agents
This commit is contained in:
parent
4622d059c7
commit
e7713238c8
@ -2698,6 +2698,7 @@ class HTTP_WebDAV_Server
|
||||
*
|
||||
* @param string URL to encode
|
||||
* @return string encoded URL
|
||||
* @todo check if other not explicitly named user-agents are happy with full url-encoding too and we can make it the default
|
||||
*/
|
||||
public static function _urlencode($url)
|
||||
{
|
||||
@ -2707,7 +2708,9 @@ class HTTP_WebDAV_Server
|
||||
// old netdrive does NOT use a User-Agent, but requires full urlencoding for non-ascii chars (eg. German Umlauts)
|
||||
!isset($_SERVER['HTTP_USER_AGENT']) ||
|
||||
// current netdrive uses "NetDrive 2.5.8" as user-agent
|
||||
stripos($_SERVER['HTTP_USER_AGENT'],'NetDrive') !== false)
|
||||
stripos($_SERVER['HTTP_USER_AGENT'],'NetDrive') !== false ||
|
||||
// OS X Finder (WebDAVFS/3.0.0 (03008000) Darwin/14.3.0 (x86_64))
|
||||
stripos($_SERVER['HTTP_USER_AGENT'],'WebDAVFS') !== false && stripos($_SERVER['HTTP_USER_AGENT'],'Darwin'))
|
||||
{
|
||||
return strtr(rawurlencode($url),array(
|
||||
'%2F' => '/',
|
||||
|
Loading…
Reference in New Issue
Block a user