You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FYI
maytronics.fr has address 35.181.64.71
maytronics.fr mail is handled by 10 mx2.hc1114-74.c3s2.iphmx.com.
maytronics.fr mail is handled by 0 mx1.hc1114-74.c3s2.iphmx.com.
Hello,
On line 202 ->
if (empty($dnsRecord['target']) || $dnsRecord['target'] === '.') {
if record target = 0, empty ->true.
Wouldn't it be better with :
if ((array_key_exists('target',$dnsRecord) && $dnsRecord['target'] == null) || $dnsRecord['target'] === '.') {
?
Thanks
Phil
The text was updated successfully, but these errors were encountered: