This commit is contained in:
sparc 2007-12-21 18:23:29 +00:00
parent 9d2cfa8864
commit 55bc0e549a
2 changed files with 3 additions and 2 deletions

View file

@ -5,6 +5,7 @@
- added support for centralnic domains - added support for centralnic domains
- added handler for .pt - added handler for .pt
- fixed bug #1761156 - fixed bug #1761156
- applied patch #1749389
2007/05/30 2007/05/30
- removed support for .gr domains - removed support for .gr domains

View file

@ -190,8 +190,8 @@ class WhoisClient {
if(!$this->BUFFER) if(!$this->BUFFER)
$output = explode("\n", $raw); $output = explode("\n", $raw);
// Drop empty last line // Drop empty last line (if it's empty! - saleck)
if (empty($output[count($output)-1])) if(empty($output[count($output)-1]))
unset($output[count($output)-1]); unset($output[count($output)-1]);
} }