From 6c186df8f1dd6be6e620e29e62958250b9ce503b Mon Sep 17 00:00:00 2001 From: "luca.vocella" <66893-luca.vocella@users.noreply.drupalcode.org> Date: Tue, 2 Apr 2024 15:35:32 +0000 Subject: [PATCH] Update file PathProcessorDecode.php --- core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php b/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php index a74b1461b235..250b99b2b4c6 100644 --- a/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php +++ b/core/lib/Drupal/Core/PathProcessor/PathProcessorDecode.php @@ -23,7 +23,7 @@ class PathProcessorDecode implements InboundPathProcessorInterface { * {@inheritdoc} */ public function processInbound($path, Request $request) { - return urldecode($path); + return rawurldecode($path); } } -- GitLab