From: <var...@us...> - 2016-07-21 10:16:09
|
Revision: 9897 http://sourceforge.net/p/phpwiki/code/9897 Author: vargenau Date: 2016-07-21 10:16:06 +0000 (Thu, 21 Jul 2016) Log Message: ----------- Use __construct Modified Paths: -------------- trunk/lib/HttpClient.php Modified: trunk/lib/HttpClient.php =================================================================== --- trunk/lib/HttpClient.php 2016-07-21 09:56:45 UTC (rev 9896) +++ trunk/lib/HttpClient.php 2016-07-21 10:16:06 UTC (rev 9897) @@ -49,7 +49,7 @@ public $redirect_count = 0; public $cookie_host = ''; - function HttpClient($host = 'localhost', $port = 80) + function __construct($host = 'localhost', $port = 80) { $this->host = $host; $this->port = $port; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |