mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 23:29:31 +01:00
* Filemanager: allow WebDAVs (https) via PEAR HTTP_WebDAV_Client
This commit is contained in:
parent
3f9d70a484
commit
8585a30b85
@ -471,6 +471,7 @@ function load_wrapper($url)
|
||||
switch($scheme)
|
||||
{
|
||||
case 'webdav':
|
||||
case 'webdavs':
|
||||
require_once('HTTP/WebDAV/Client.php');
|
||||
break;
|
||||
case '': // default scheme is file and alsways available
|
||||
|
@ -1133,8 +1133,9 @@ class vfs_stream_wrapper implements iface_stream_wrapper
|
||||
switch($scheme)
|
||||
{
|
||||
case 'webdav':
|
||||
case 'webdavs':
|
||||
require_once('HTTP/WebDAV/Client.php');
|
||||
self::$wrappers[] = 'webdav';
|
||||
self::$wrappers[] = $scheme;
|
||||
break;
|
||||
case '':
|
||||
break; // default file, always loaded
|
||||
|
Loading…
Reference in New Issue
Block a user