summaryrefslogtreecommitdiff
path: root/inc/HTTPClient.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2006-02-24 20:21:30 +0100
committerAndreas Gohr <andi@splitbrain.org>2006-02-24 20:21:30 +0100
commitd15580d81f02ea5d8d9298af32eb82b8b74d462a (patch)
treef016e140b73551809e6cd350e1d88ddfe264faec /inc/HTTPClient.php
parentdb7650cce87573651b4918faeaa3a536f303912f (diff)
downloadrpg-d15580d81f02ea5d8d9298af32eb82b8b74d462a.tar.gz
rpg-d15580d81f02ea5d8d9298af32eb82b8b74d462a.tar.bz2
fixed typo in HTTP client #726
darcs-hash:20060224192130-7ad00-32144bb71be4c9f0cde6a613d8612ce760d18892.gz
Diffstat (limited to 'inc/HTTPClient.php')
-rw-r--r--inc/HTTPClient.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/HTTPClient.php b/inc/HTTPClient.php
index 1b9e82fe6..18f4435bc 100644
--- a/inc/HTTPClient.php
+++ b/inc/HTTPClient.php
@@ -150,7 +150,7 @@ class HTTPClient {
if(!empty($uri['query'])) $path .= '?'.$uri['query'];
$port = $uri['port'];
if($uri['user']) $this->user = $uri['user'];
- if($uri['pass']) $this->user = $uri['pass'];
+ if($uri['pass']) $this->pass = $uri['pass'];
// proxy setup
if($this->proxy_host){