From be40b3719e76c017520b14705960a31930bd377a Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Wed, 15 Jun 2022 16:15:04 +0200 Subject: [PATCH] [BUGFIX] Use full controller class name for plugin registration (#457) This get the FE output of the plugin get to work in TYPO3 10LTS and 11LTS. Fixes #441 --- ext_localconf.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ext_localconf.php b/ext_localconf.php index daf382c..5386d5f 100644 --- a/ext_localconf.php +++ b/ext_localconf.php @@ -11,11 +11,11 @@ defined('TYPO3_MODE') or die('Access denied.'); 'Tea', // all actions [ - 'Tea' => 'index, show', + \TTN\Tea\Controller\TeaController::class => 'index, show', ], // non-cacheable actions [ - 'Tea' => '', + \TTN\Tea\Controller\TeaController::class => '', ] ); })();