Skip to content

Commit

Permalink
[BUGFIX] Fix missing backend module
Browse files Browse the repository at this point in the history
The backend module configuration property "access" does no longer
allow the value "group" (see
https://docs.typo3.org/m/typo3/reference-coreapi/12.4/en-us/ApiOverview/Backend/BackendModules/ModuleConfiguration/Index.html#confval-backend-module-access)
If provided, the backend module is hidden from user access
administration.

Resolves: #278
  • Loading branch information
helmutstrasser authored and fnagel committed Sep 18, 2024
1 parent 5fb3bd7 commit e449884
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Configuration/Backend/Modules.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'web_T3extblogBlogsystem' => [
'parent' => 'web',
'position' => ['after' => 'web_info'],
'access' => 'user,group',
'access' => 'user',
'workspaces' => '*',
'iconIdentifier' => 'extensions-t3extblog-plugin',
'labels' => 'LLL:EXT:t3extblog/Resources/Private/Language/locallang_mod.xlf',
Expand Down

0 comments on commit e449884

Please sign in to comment.