From 0861d59e3101803b680496d678af9a7602d97006 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim=20D=C3=BCsterhus?= Date: Sat, 23 Nov 2013 16:28:54 +0100 Subject: [PATCH] Fix support for PROXY_SERVER_HTTP --- wcfsetup/install/files/lib/util/HTTPRequest.class.php | 1 - 1 file changed, 1 deletion(-) diff --git a/wcfsetup/install/files/lib/util/HTTPRequest.class.php b/wcfsetup/install/files/lib/util/HTTPRequest.class.php index 6da9d293f9..f8bc9e1850 100644 --- a/wcfsetup/install/files/lib/util/HTTPRequest.class.php +++ b/wcfsetup/install/files/lib/util/HTTPRequest.class.php @@ -202,7 +202,6 @@ final class HTTPRequest { $this->useSSL = $parsedUrl['scheme'] === 'https'; $this->host = $parsedUrl['host']; $this->port = isset($parsedUrl['port']) ? $parsedUrl['port'] : ($this->useSSL ? 443 : 80); - $this->path = isset($parsedUrl['path']) ? $parsedUrl['path'] : '/'; $this->query = isset($parsedUrl['query']) ? $parsedUrl['query'] : ''; // update the 'Host:' header if URL has changed -- 2.20.1