diff options
author | root <root@oc.(none)> | 2012-12-15 00:09:39 +0100 |
---|---|---|
committer | root <root@oc.(none)> | 2012-12-15 00:09:39 +0100 |
commit | f381d2e9ed4606f44641b24250379ab4c5000b6e (patch) | |
tree | ef3bed1d366c3fe4a49fe23c0cfa6853778e1c05 | |
parent | 2a55beab74e6ddaac80213565121c23b5357a229 (diff) | |
download | nextcloud-server-f381d2e9ed4606f44641b24250379ab4c5000b6e.tar.gz nextcloud-server-f381d2e9ed4606f44641b24250379ab4c5000b6e.zip |
call it "proxy" instead of "curlproxy"
Thanks Bart for the hint.
This also switches "==" to "<>" and not the code actually works ;-)
-rw-r--r-- | config/config.sample.php | 4 | ||||
-rwxr-xr-x | lib/util.php | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/config/config.sample.php b/config/config.sample.php index c915a877291..78dfe17ea79 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -43,10 +43,10 @@ $CONFIG = array( "enhancedauthtime" => 15 * 60, /* A proxy to use to connect to the internet. For example "myproxy.org:88" */ -"curlproxy" => "", +"proxy" => "", /* The optional authentication for the proxy to use to connect to the internet. The format is: [username]:[password] */ -"curlproxyuserpwd" => "", +"proxyuserpwd" => "", /* Theme to use for ownCloud */ "theme" => "", diff --git a/lib/util.php b/lib/util.php index 61b327d0b8c..f2044625b41 100755 --- a/lib/util.php +++ b/lib/util.php @@ -696,11 +696,11 @@ class OC_Util { curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_USERAGENT, "ownCloud Server Crawler"); - if(OC_Config::getValue('curlproxy','')=='') { - curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('curlproxy')); + if(OC_Config::getValue('proxy','')<>'') { + curl_setopt($curl, CURLOPT_PROXY, OC_Config::getValue('proxy')); } - if(OC_Config::getValue('curlproxyuserpwd','')=='') { - curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('curlproxyuserpwd')); + if(OC_Config::getValue('proxyuserpwd','')<>'') { + curl_setopt($curl, CURLOPT_PROXYUSERPWD, OC_Config::getValue('proxyuserpwd')); } $data = curl_exec($curl); curl_close($curl); |