From b2bfb97472e669de2f1f7d2acca58b2508c010f0 Mon Sep 17 00:00:00 2001 From: Benni Mack <benni@typo3.org> Date: Mon, 17 Jun 2024 23:51:13 +0200 Subject: [PATCH] [BUGFIX] Unify backend routes for workspace Resolves: #103212 Releases: main, 12.4 Change-Id: If285a5cb1bb418ef7671ca6894827a059e5c1cb7 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/84741 Tested-by: Georg Ringer <georg.ringer@gmail.com> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: core-ci <typo3@b13.com> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- typo3/sysext/workspaces/Configuration/Backend/Routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/workspaces/Configuration/Backend/Routes.php b/typo3/sysext/workspaces/Configuration/Backend/Routes.php index 62836d114de3..cc6283f29275 100644 --- a/typo3/sysext/workspaces/Configuration/Backend/Routes.php +++ b/typo3/sysext/workspaces/Configuration/Backend/Routes.php @@ -4,7 +4,7 @@ */ return [ 'workspace_previewcontrols' => [ - 'path' => '/workspace/preview-control/', + 'path' => '/workspace/preview-control', 'target' => \TYPO3\CMS\Workspaces\Controller\PreviewController::class . '::handleRequest', ], ]; -- GitLab