allow to specify domain, user and password via url again

This commit is contained in:
Ralf Becker 2015-04-17 14:08:09 +00:00
parent ed6280e44b
commit 923789c5e1

View File

@ -469,7 +469,7 @@ switch($cmd)
*/ */
function load_wrapper($url) function load_wrapper($url)
{ {
$scheme = egw_vfs::parse_url($url,PHP_URL_SCHEME); $scheme = parse_url($url,PHP_URL_SCHEME);
if (!in_array($scheme,stream_get_wrappers())) if (!in_array($scheme,stream_get_wrappers()))
{ {
@ -484,7 +484,7 @@ function load_wrapper($url)
default: default:
if (!isset($GLOBALS['egw']) && !in_array($scheme,array('smb','imap'))) if (!isset($GLOBALS['egw']) && !in_array($scheme,array('smb','imap')))
{ {
load_egw(egw_vfs::parse_url($url,PHP_URL_USER),egw_vfs::parse_url($url,PHP_URL_PASS),egw_vfs::parse_url($url,PHP_URL_HOST)); load_egw(parse_url($url,PHP_URL_USER), parse_url($url,PHP_URL_PASS), parse_url($url,PHP_URL_HOST));
} }
// get eGW's __autoload() function // get eGW's __autoload() function
include_once(EGW_API_INC.'/common_functions.inc.php'); include_once(EGW_API_INC.'/common_functions.inc.php');