mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-13 00:56:12 +01:00
[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
This commit is contained in:
parent
569fad3626
commit
be40b3719e
1 changed files with 2 additions and 2 deletions
|
@ -11,11 +11,11 @@ defined('TYPO3_MODE') or die('Access denied.');
|
||||||
'Tea',
|
'Tea',
|
||||||
// all actions
|
// all actions
|
||||||
[
|
[
|
||||||
'Tea' => 'index, show',
|
\TTN\Tea\Controller\TeaController::class => 'index, show',
|
||||||
],
|
],
|
||||||
// non-cacheable actions
|
// non-cacheable actions
|
||||||
[
|
[
|
||||||
'Tea' => '',
|
\TTN\Tea\Controller\TeaController::class => '',
|
||||||
]
|
]
|
||||||
);
|
);
|
||||||
})();
|
})();
|
||||||
|
|
Loading…
Reference in a new issue