[Gambas-bugtracker] Bug #1598: Networking/HTTPPost does not work

bugtracker at gambaswiki.org bugtracker at gambaswiki.org
Fri May 24 06:04:03 CEST 2019


http://gambaswiki.org/bugtracker/edit?object=BUG.1598&from=L21haW4-

Comment #2 by Alex -:

And patch:

--- ./xmlrpc.inc.orig 2005-04-18 08:21:16.000000000 +1000
+++ ./xmlrpc.inc 2019-05-24 10:20:58.904775960 +0900
@@ -338,10 +338,10 @@
$username="", $password="") {
if($timeout>0)
$fp=fsockopen($server, $port,
- &$this->errno, &$this->errstr, $timeout);
+ $this->errno, $this->errstr, $timeout);
else
$fp=fsockopen($server, $port,
- &$this->errno, &$this->errstr);
+ $this->errno, $this->errstr);
if (!$fp) {
return 0;
}




More information about the Bugtracker mailing list