[Phpfreechat-svn] SF.net SVN: phpfreechat: [722] trunk/contrib/pfcInstaller2/step2.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-09-01 15:11:52
|
Revision: 722 http://svn.sourceforge.net/phpfreechat/?rev=722&view=rev Author: kerphi Date: 2006-09-01 08:11:27 -0700 (Fri, 01 Sep 2006) Log Message: ----------- correct the proxy parameters Modified Paths: -------------- trunk/contrib/pfcInstaller2/step2.php Modified: trunk/contrib/pfcInstaller2/step2.php =================================================================== --- trunk/contrib/pfcInstaller2/step2.php 2006-08-30 21:05:51 UTC (rev 721) +++ trunk/contrib/pfcInstaller2/step2.php 2006-09-01 15:11:27 UTC (rev 722) @@ -21,8 +21,8 @@ @unlink($dstpath."/".$archivename); $param = array(); - if (isset($_GET["host"])) $http["proxy_host"] = $_GET["host"]; - if (isset($_GET["port"])) $http["proxy_port"] = $_GET["port"]; + if (isset($_GET["host"])) $param["proxy_host"] = $_GET["host"]; + if (isset($_GET["port"])) $param["proxy_port"] = $_GET["port"]; require_once "HTTP/Request.php"; $nextmirror = false; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |