Breaking: #77987 - Removal fe_users rendering in page module
See forge#77987
Description
Because of the deprecation of
$GLOBALS
,
the records of the table fe_
are no longer rendered in the page module.
Affected Installations
All installations.
Migration
By using the following code in the
ext_
file, the records can be shown again:
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['cms']['db_layout']['addTables']['fe_users'] =
array (0 => array(
'MENU' => '',
'fList' => 'username,usergroup,name,email,telephone,address,zip,city',
'icon' => true
)
);
Copied!