applied patch #1749389
This commit is contained in:
parent
9d2cfa8864
commit
55bc0e549a
2 changed files with 3 additions and 2 deletions
|
@ -5,6 +5,7 @@
|
|||
- added support for centralnic domains
|
||||
- added handler for .pt
|
||||
- fixed bug #1761156
|
||||
- applied patch #1749389
|
||||
|
||||
2007/05/30
|
||||
- removed support for .gr domains
|
||||
|
|
|
@ -190,8 +190,8 @@ class WhoisClient {
|
|||
if(!$this->BUFFER)
|
||||
$output = explode("\n", $raw);
|
||||
|
||||
// Drop empty last line
|
||||
if (empty($output[count($output)-1]))
|
||||
// Drop empty last line (if it's empty! - saleck)
|
||||
if(empty($output[count($output)-1]))
|
||||
unset($output[count($output)-1]);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue