mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-05-26 02:44:29 +00:00
Avoid variable not assigned warning.
This commit is contained in:
parent
c36982c22f
commit
df9a8a8911
@ -388,7 +388,7 @@ class iSchedule
|
|||||||
function sendRequest ( $address, $type, $data )
|
function sendRequest ( $address, $type, $data )
|
||||||
{
|
{
|
||||||
global $session;
|
global $session;
|
||||||
if ( $this->scheduling_dkim_domain == null )
|
if ( empty($this->scheduling_dkim_domain) )
|
||||||
return false;
|
return false;
|
||||||
if ( is_array ( $address ) )
|
if ( is_array ( $address ) )
|
||||||
list ( $user, $domain ) = explode ( '@', $address[0] );
|
list ( $user, $domain ) = explode ( '@', $address[0] );
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user