From 44044b0cd2272cd50074170ded92fdc78f853896 Mon Sep 17 00:00:00 2001 From: Abdul Malik Ikhsan Date: Thu, 19 Mar 2020 01:23:17 +0700 Subject: [PATCH] revert outdated $this->uri->resolveRelativeURI() call at IncomingRequest class --- system/HTTP/IncomingRequest.php | 1 - 1 file changed, 1 deletion(-) diff --git a/system/HTTP/IncomingRequest.php b/system/HTTP/IncomingRequest.php index b81c9132ef4c..84ee8ca95b5a 100755 --- a/system/HTTP/IncomingRequest.php +++ b/system/HTTP/IncomingRequest.php @@ -616,7 +616,6 @@ protected function detectURI(string $protocol, string $baseURL) $this->uri->setScheme(parse_url($baseURL, PHP_URL_SCHEME)); $this->uri->setHost(parse_url($baseURL, PHP_URL_HOST)); $this->uri->setPort(parse_url($baseURL, PHP_URL_PORT)); - $this->uri->resolveRelativeURI($this->uri->getPath()); // Ensure we have any query vars $this->uri->setQuery($_SERVER['QUERY_STRING'] ?? '');