diff --git a/phpgwapi/inc/class.xmlrpc_client.inc.php b/phpgwapi/inc/class.xmlrpc_client.inc.php index 03688af8f2..61ea52e7c4 100644 --- a/phpgwapi/inc/class.xmlrpc_client.inc.php +++ b/phpgwapi/inc/class.xmlrpc_client.inc.php @@ -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) {