We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16e457d commit 7247297Copy full SHA for 7247297
lib/internal/Magento/Framework/Url.php
@@ -528,16 +528,18 @@ protected function _setRoutePath($data)
528
}
529
$this->_setActionName($action);
530
531
+ $routePathParams = [];
532
if (!empty($routePieces)) {
533
while (!empty($routePieces)) {
534
$key = array_shift($routePieces);
535
536
$value = array_shift($routePieces);
- $this->getRouteParamsResolver()->setRouteParam($key, $value);
537
+ $routePathParams[$key] = $value;
538
539
540
541
542
+ $this->getRouteParamsResolver()->setRouteParams($routePathParams);
543
return $this;
544
545
0 commit comments