forked from extern/egroupware
fixed bad reference which caused problems on windows servers
This commit is contained in:
parent
52ad25deb0
commit
ebc98519ce
@ -114,11 +114,11 @@
|
|||||||
}
|
}
|
||||||
if($timeout>0)
|
if($timeout>0)
|
||||||
{
|
{
|
||||||
$fp = fsockopen($server, $port, &$this->errno, &$this->errstr, $timeout);
|
$fp = fsockopen($server, $port, $this->errno, $this->errstr, $timeout);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$fp = fsockopen($server, $port, &$this->errno, &$this->errstr);
|
$fp = fsockopen($server, $port, $this->errno, $this->errstr);
|
||||||
}
|
}
|
||||||
if(!$fp)
|
if(!$fp)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user