fixed bad reference which caused problems on windows servers

This commit is contained in:
seek3r 2003-05-10 08:52:21 +00:00
parent 52ad25deb0
commit ebc98519ce

View File

@ -114,11 +114,11 @@
}
if($timeout>0)
{
$fp = fsockopen($server, $port, &$this->errno, &$this->errstr, $timeout);
$fp = fsockopen($server, $port, $this->errno, $this->errstr, $timeout);
}
else
{
$fp = fsockopen($server, $port, &$this->errno, &$this->errstr);
$fp = fsockopen($server, $port, $this->errno, $this->errstr);
}
if(!$fp)
{