summaryrefslogtreecommitdiff
path: root/inc/HTTPClient.php
diff options
context:
space:
mode:
authorChris Smith <chris.eureka@jalakai.co.uk>2009-01-19 17:48:09 +0100
committerChris Smith <chris.eureka@jalakai.co.uk>2009-01-19 17:48:09 +0100
commit3994772a3d7c09e3152591d2e20e85b389acc4ac (patch)
tree1219f2b5749834b53542e3f3befbc1a4907cd1aa /inc/HTTPClient.php
parent32ee58308d5bb11c322ca6bfc3b56e66364230af (diff)
downloadrpg-3994772a3d7c09e3152591d2e20e85b389acc4ac.tar.gz
rpg-3994772a3d7c09e3152591d2e20e85b389acc4ac.tar.bz2
FS#1517, obscure passwords in config files
This patch extends the config 'password' class to support a "_code" parameter darcs-hash:20090119164809-f07c6-c136b559772610539bccb9e9c0191f6a973216ad.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 71844b847..1184aebee 100644
--- a/inc/HTTPClient.php
+++ b/inc/HTTPClient.php
@@ -32,7 +32,7 @@ class DokuHTTPClient extends HTTPClient {
$this->proxy_host = $conf['proxy']['host'];
$this->proxy_port = $conf['proxy']['port'];
$this->proxy_user = $conf['proxy']['user'];
- $this->proxy_pass = $conf['proxy']['pass'];
+ $this->proxy_pass = conf_decodeString($conf['proxy']['pass']);
$this->proxy_ssl = $conf['proxy']['ssl'];
}
}