.cz fix
This commit is contained in:
parent
74382fcf82
commit
26af61f7a4
3 changed files with 11 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
- added handler for gandi (request #3155752)
|
||||
- added handler for .cl
|
||||
- corrected utf-8 support for .hu, .br and ripe
|
||||
- fixed. pl, .org.za, .be handler
|
||||
- fixes for .pl, .org.za, .be, .cz handlers
|
||||
|
||||
2011/06/24
|
||||
- fixed .be handler (bug #3307363)
|
||||
|
|
|
@ -46,7 +46,7 @@ class cz_handler
|
|||
'descr' => 'desc',
|
||||
'e-mail' => 'email',
|
||||
'person' => 'name',
|
||||
'role' => 'organization',
|
||||
'org' => 'organization',
|
||||
'fax-no' => 'fax'
|
||||
);
|
||||
|
||||
|
@ -57,14 +57,19 @@ class cz_handler
|
|||
'registrant' => 'owner'
|
||||
);
|
||||
|
||||
$r['regrinfo'] = generic_parser_a($data_str['rawdata'], $translate, $contacts, 'domain', 'dmy');
|
||||
|
||||
$r['regyinfo'] = array(
|
||||
'referrer' => 'http://www.nic.cz',
|
||||
'registrar' => 'CZ-NIC'
|
||||
);
|
||||
|
||||
$reg = generic_parser_a($data_str['rawdata'], $translate, $contacts, 'domain', 'dmy');
|
||||
$r['regrinfo'] = $reg;
|
||||
return ($r);
|
||||
if ($data_str['rawdata'][0] == 'Your connection limit exceeded. Please slow down and try again later.')
|
||||
{
|
||||
$r['regrinfo']['registered'] = 'unknown';
|
||||
}
|
||||
|
||||
return $r;
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue