diff --git a/include/functions.php b/include/functions.php index 136bccdf6..0ddf96430 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2009,8 +2009,6 @@ return false; if (version_compare(PHP_VERSION, '7.1.0', '>=')) { - $context = stream_context_create($context_options); - $context_options = array( 'http' => array( 'header' => array( @@ -2026,6 +2024,8 @@ $context_options['http']['proxy'] = _HTTP_PROXY; } + $context = stream_context_create($context_options); + $headers = get_headers($url, 0, $context); } else { $headers = get_headers($url, 0);