minor fixes
This commit is contained in:
parent
0b52ce85f8
commit
78616c742f
2 changed files with 6 additions and 6 deletions
|
@ -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:',
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue