diff --git a/src/whois.gtld.enom.php b/src/whois.gtld.enom.php index 60e0973..6f96b4e 100644 --- a/src/whois.gtld.enom.php +++ b/src/whois.gtld.enom.php @@ -52,6 +52,7 @@ class enom_handler 'domain.nserver' => 'Nameservers', 'domain.name#0' => 'Domain name:', 'domain.name#1' => 'Domain name-', + 'domain.sponsor' => 'Registration Service Provided By:', 'domain.status' => 'Status:', 'domain.created#0' => 'Creation date:', 'domain.expires#0' => 'Expiration date:', diff --git a/src/whois.gtld.tvcorp.php b/src/whois.gtld.tvcorp.php index 0106f11..fc9885e 100644 --- a/src/whois.gtld.tvcorp.php +++ b/src/whois.gtld.tvcorp.php @@ -49,12 +49,11 @@ class tvcorp_handler ); $r = get_blocks($data_str, $items); - $r['owner'] = get_contact($r['owner']); - $r['admin'] = get_contact($r['admin']); - $r['tech'] = get_contact($r['tech']); - - if (isset($r['billing'])) - $r['billing'] = get_contact($r['billing']); + + 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['billing'])) $r['billing'] = get_contact($r['billing']); $r = format_dates($r, 'myd'); return ($r);