From a555ba235add122ab9c82034c8f34d5c17d54a6e Mon Sep 17 00:00:00 2001 From: Chris Lock Date: Fri, 1 Nov 2024 11:54:07 +0000 Subject: [PATCH 1/2] DOC Adding missing quote on routing example --- en/02_Developer_Guides/02_Controllers/02_Routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02_Developer_Guides/02_Controllers/02_Routing.md b/en/02_Developer_Guides/02_Controllers/02_Routing.md index f41cfbb44..f780ed99a 100644 --- a/en/02_Developer_Guides/02_Controllers/02_Routing.md +++ b/en/02_Developer_Guides/02_Controllers/02_Routing.md @@ -201,7 +201,7 @@ start parsing variables and the appropriate controller action AFTER the `//`). ```yml SilverStripe\Control\Director: rules: - 'admin/help//$Action/$ID: 'App\Control\AdminHelpController' + 'admin/help//$Action/$ID:' 'App\Control\AdminHelpController' ``` ### Wildcard URL patterns From 7263e714b42b0f141bdc41e5813777ca705b2692 Mon Sep 17 00:00:00 2001 From: Chris Lock Date: Mon, 4 Nov 2024 10:21:10 +0000 Subject: [PATCH 2/2] DOC fixing the bad placement of quote --- en/02_Developer_Guides/02_Controllers/02_Routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/02_Developer_Guides/02_Controllers/02_Routing.md b/en/02_Developer_Guides/02_Controllers/02_Routing.md index f780ed99a..a52b95513 100644 --- a/en/02_Developer_Guides/02_Controllers/02_Routing.md +++ b/en/02_Developer_Guides/02_Controllers/02_Routing.md @@ -201,7 +201,7 @@ start parsing variables and the appropriate controller action AFTER the `//`). ```yml SilverStripe\Control\Director: rules: - 'admin/help//$Action/$ID:' 'App\Control\AdminHelpController' + 'admin/help//$Action/$ID': 'App\Control\AdminHelpController' ``` ### Wildcard URL patterns