This commit is contained in:
sparc 2011-06-26 10:19:10 +00:00
parent afadc2471d
commit 87b8ec9cd0
5 changed files with 9 additions and 5 deletions

View file

@ -2,7 +2,7 @@
- added handler for gandi (request #3155752)
- added handler for .cl
- corrected utf-8 support for .hu, .br and ripe
- fixes for .pl, .org.za, .be, .cz, .de, .fj handlers
- fixes for .pl, .org.za, .be, .cz, .de, .fj, .it handlers
2011/06/24
- fixed .be handler (bug #3307363)

View file

@ -58,14 +58,15 @@ class it_handler
'contactid:' => 'handle',
'organization:' => 'organization',
'created:' => 'created',
'last update:' => 'changed'
'last update:' => 'changed',
'web:' => 'web'
);
$r['regrinfo'] = easy_parser($data_str['rawdata'], $items, 'ymd',$extra);
if (isset($r['regrinfo']['registrar']))
{
$r['domain']['registrar'] = $r['regrinfo']['registrar'][0];
$r['regrinfo']['domain']['registrar'] = $r['regrinfo']['registrar'];
unset($r['regrinfo']['registrar']);
}

View file

@ -555,6 +555,9 @@ if (isset($array['admin']))
if (isset($array['owner']))
$array['owner'] = get_contact($array['owner'], $extra_items, $has_org);
if (isset($array['registrar']))
$array['registrar'] = get_contact($array['registrar'], $extra_items, $has_org);
return $array;
}

View file

@ -38,7 +38,7 @@ class pl_handler
'domain.created' => 'created:',
'domain.changed' => 'last modified:',
'domain.sponsor' => 'REGISTRAR:',
'#' => 'WHOIS displays data'
'#' => 'WHOIS displays data with a delay not exceeding 15 minutes in relation to the .pl Registry system'
);

File diff suppressed because one or more lines are too long