mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-16 21:13:23 +01:00
allow to specify domain, user and password via url again
This commit is contained in:
parent
ed6280e44b
commit
923789c5e1
@ -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');
|
||||||
|
Loading…
Reference in New Issue
Block a user