summaryrefslogtreecommitdiff
path: root/inc/HTTPClient.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2005-11-11 21:06:46 +0100
committerAndreas Gohr <andi@splitbrain.org>2005-11-11 21:06:46 +0100
commitc971ac6dd19bf45d86e2ce199d061393e628c1d8 (patch)
treec8f392ecff003c33ac9f43671ea8e1bc1c87101f /inc/HTTPClient.php
parentc591aabe4bfdea879a1804e525b40a697ba9afce (diff)
downloadrpg-c971ac6dd19bf45d86e2ce199d061393e628c1d8.tar.gz
rpg-c971ac6dd19bf45d86e2ce199d061393e628c1d8.tar.bz2
Fix for broken Prox Support #626
darcs-hash:20051111200646-7ad00-0eca22780e39dfd24344180a541500b08a3a93df.gz
Diffstat (limited to 'inc/HTTPClient.php')
-rw-r--r--inc/HTTPClient.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/HTTPClient.php b/inc/HTTPClient.php
index 326bf2692..0ed34de44 100644
--- a/inc/HTTPClient.php
+++ b/inc/HTTPClient.php
@@ -155,8 +155,8 @@ class HTTPClient {
// proxy setup
if($this->proxy_host){
$request_url = $url;
- $server = $config['proxy_host'];
- $port = $config['proxy_port'];
+ $server = $this->proxy_host;
+ $port = $this->proxy_port;
if (empty($port)) $port = 8080;
}else{
$request_url = $path;