Actions
Bug #103005
closedBackend module "About" requires shortDescription
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2024-01-31
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
12
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Similar to #99429 the backend module "About" (/typo3/module/help/about) throws an error, if shortDescription
is empty or not set.
(1/1) #1351584844 TYPO3Fluid\Fluid\Core\ViewHelper\Exception An argument "key" or "id" has to be provided in /var/www/html/vendor/typo3/cms-fluid/Classes/ViewHelpers/TranslateViewHelper.php line 150
Working configuration in "Configuration/Backend/Modules.php"
return [ 'foo' => [ 'parent' => 'web', // ... 'labels' => [ 'title' => 'foo', 'shortDescription' => 'bar', ] ] ];
Invalid configuration in "Configuration/Backend/Modules.php"
return [ 'foo' => [ 'parent' => 'web', // ... 'labels' => [ 'title' => 'foo', 'shortDescription' => '', ] ] ];
Files
Actions