From a2410877e6e0fb2a02aa8c1e727fa81d4400d311 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Sun, 29 May 2022 19:51:23 +0200 Subject: [PATCH] Fix url patterns in route enhancer config by reordering --- config/sites/ep-reisen/config.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/sites/ep-reisen/config.yaml b/config/sites/ep-reisen/config.yaml index 2ad782ff..b272ca01 100644 --- a/config/sites/ep-reisen/config.yaml +++ b/config/sites/ep-reisen/config.yaml @@ -104,18 +104,18 @@ routeEnhancers: _controller: 'Product::detail' _arguments: product: product - - - routePath: '/detail/{product}/{hotel}' - _controller: 'Product::detail' - _arguments: - product: product - hotel: hotel - routePath: '/detail/{product_uid}/{hotel_uid}' _controller: 'Product::detail' _arguments: product_uid: product hotel_uid: hotel + - + routePath: '/detail/{product}/{hotel}' + _controller: 'Product::detail' + _arguments: + product: product + hotel: hotel - routePath: '/detail/{date_from}/{date_to}' _controller: 'Product::detail'