diff --git a/CHANGELOG.md b/CHANGELOG.md index 27ea5346a..3fe1b0504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ * Removed apc and xcache support, made apc alias of apcu 1. [](#bugfix) * Fixed non-namespaced exceptions in scheduler + * Fixed trailing slash redirect in multlang environment # v1.6.0-rc.1 ## 01/30/2019 diff --git a/system/src/Grav/Common/Processors/InitializeProcessor.php b/system/src/Grav/Common/Processors/InitializeProcessor.php index 2348d1d5f..de04a617a 100644 --- a/system/src/Grav/Common/Processors/InitializeProcessor.php +++ b/system/src/Grav/Common/Processors/InitializeProcessor.php @@ -58,7 +58,7 @@ class InitializeProcessor extends ProcessorBase && Utils::endsWith($path, '/')) { $redirect = (string) $uri::getCurrentRoute()->toString(); - $this->container->redirectLangSafe($redirect); + $this->container->redirect($redirect); } $this->container->setLocale();