Skip to content

Commit

Permalink
Fixed invalid regex syntax causing crash on Typo3 10.4.4:
Browse files Browse the repository at this point in the history
Parameter "tx_blog_archive__year" for route "tx_blog_archive_1" must match "[0-9]{1..4}" ("2020" given) to generate a corresponding URL.

Signed-off-by: Robert Kärner <[email protected]>
  • Loading branch information
Physikbuddha committed Jun 9, 2020
1 parent 5a83f5c commit 8ab3eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/Routes/BlogArchive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ routeEnhancers:
page: '@widget_0/currentPage'
defaultController: 'Post::listPostsByDate'
requirements:
year: '[0-9]{1..4}'
year: '[0-9]{1,4}'
month: '[a-z]+'
page: '\d+'
aspects:
Expand Down

0 comments on commit 8ab3eca

Please sign in to comment.