mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
* Filemanager: allow WebDAVs (https) via PEAR HTTP_WebDAV_Client
This commit is contained in:
parent
b34d6f9d35
commit
7d8347cd34
@ -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