From 32dc9ec854f9c317266584ecb33127f469d4bd80 Mon Sep 17 00:00:00 2001 From: martin scharm Date: Thu, 18 Jan 2018 08:48:53 +0100 Subject: undocumenting the proxy settings [see #36] in response to https://git.tt-rss.org/git/tt-rss/pulls/36#issuecomment-119 --- include/functions.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 2c6b51337..dfa78a8ac 100644 --- a/include/functions.php +++ b/include/functions.php @@ -402,8 +402,8 @@ curl_setopt($ch, CURLOPT_COOKIEJAR, "/dev/null"); } - if (defined('PROXY')) { - curl_setopt($ch, CURLOPT_PROXY, PROXY); + if (defined('_HTTP_PROXY')) { + curl_setopt($ch, CURLOPT_PROXY, _HTTP_PROXY); } if ($post_query) { @@ -495,9 +495,9 @@ $context_options['http']['header'] = "If-Modified-Since: $last_modified\r\n"; } - if (defined('PROXY')) { + if (defined('_HTTP_PROXY')) { $context_options['http']['request_fulluri'] = true; - $context_options['http']['proxy'] = PROXY; + $context_options['http']['proxy'] = _HTTP_PROXY; } $context = stream_context_create($context_options); -- cgit v1.2.3