Skip to content
Snippets Groups Projects
Unverified Commit 1ab22615 authored by Stefan Winter's avatar Stefan Winter Committed by GitHub
Browse files

space is required before auth data

forward-port of my recent fix in branch 1.15
parent 7dd45a1d
No related branches found
No related tags found
No related merge requests found
...@@ -417,7 +417,7 @@ class HTTP ...@@ -417,7 +417,7 @@ class HTTP
} }
$proxy_auth = $config->getString('proxy.auth', false); $proxy_auth = $config->getString('proxy.auth', false);
if ($proxy_auth !== false) { if ($proxy_auth !== false) {
$context['http']['header'] = "Proxy-Authorization: Basic".base64_encode($proxy_auth); $context['http']['header'] = "Proxy-Authorization: Basic ".base64_encode($proxy_auth);
} }
if (!isset($context['http']['request_fulluri'])) { if (!isset($context['http']['request_fulluri'])) {
$context['http']['request_fulluri'] = true; $context['http']['request_fulluri'] = true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment