fixed some warning when ip is banned
This commit is contained in:
parent
5cfd77329b
commit
23675afae3
1 changed files with 9 additions and 4 deletions
|
@ -52,9 +52,14 @@ class domainbank extends gtld {
|
|||
);
|
||||
|
||||
$r = get_blocks($data_str,$items);
|
||||
|
||||
if (isset($r["owner"]))
|
||||
$r["owner"] = get_contact($r["owner"]);
|
||||
if (isset($r["admin"]))
|
||||
$r["admin"] = get_contact($r["admin"]);
|
||||
if (isset($r["tech"]))
|
||||
$r["tech"] = get_contact($r["tech"]);
|
||||
if (isset($r["zone"]))
|
||||
$r["zone"] = get_contact($r["zone"]);
|
||||
return($r);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue