diff options
author | Andreas Gohr <andi@splitbrain.org> | 2005-11-11 21:06:46 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2005-11-11 21:06:46 +0100 |
commit | c971ac6dd19bf45d86e2ce199d061393e628c1d8 (patch) | |
tree | c8f392ecff003c33ac9f43671ea8e1bc1c87101f | |
parent | c591aabe4bfdea879a1804e525b40a697ba9afce (diff) | |
download | rpg-c971ac6dd19bf45d86e2ce199d061393e628c1d8.tar.gz rpg-c971ac6dd19bf45d86e2ce199d061393e628c1d8.tar.bz2 |
Fix for broken Prox Support #626
darcs-hash:20051111200646-7ad00-0eca22780e39dfd24344180a541500b08a3a93df.gz
-rw-r--r-- | inc/HTTPClient.php | 4 |
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; |