Просмотр исходного кода

Correctif redirections

packProduct
Guillaume 3 лет назад
Родитель
Сommit
377f4a9c03
1 измененных файлов: 6 добавлений и 2 удалений
  1. +6
    -2
      Controller/Order/CartController.php

+ 6
- 2
Controller/Order/CartController.php Просмотреть файл

@@ -157,7 +157,9 @@ class CartController extends AbstractController
if ($referer) {
return $this->redirect($referer);
} else {
return $this->redirectToRoute('frontend_order_cart');
return $this->redirectToRoute('frontend_order_cart', [
'section' => $this->getSectionCurrentSlug()
]);
}
}

@@ -168,7 +170,9 @@ class CartController extends AbstractController
if ($referer) {
return $this->redirect($referer);
} else {
return $this->redirectToRoute('frontend_order_cart');
return $this->redirectToRoute('frontend_order_cart', [
'section' => $this->getSectionCurrentSlug()
]);
}
}
}

Загрузка…
Отмена
Сохранить