Undefined $aConfig #344

This commit is contained in:
the-djmaze 2022-05-22 10:07:33 +02:00
parent e1426b484e
commit 8ed00452f9

View file

@ -422,9 +422,9 @@ trait CardDAV
if (!$this->aDAVConfig['Mode']) { if (!$this->aDAVConfig['Mode']) {
return null; return null;
} }
$sUrl = $aConfig['Url']; $sUrl = $this->aDAVConfig['Url'];
$sUser = $aConfig['User']; $sUser = $this->aDAVConfig['User'];
$sPassword = $aConfig['Password']; $sPassword = $this->aDAVConfig['Password'];
$sProxy = ''; $sProxy = '';
$aMatch = array(); $aMatch = array();