Hi experimenting with Typo3 11 and PHP 8 in a test site. I noticed that loading the mask BE interface and clicking on a saved CE wouldn't load its field configuration. System > log message below.
Core: Exception handler (WEB): Uncaught TYPO3 Exception: #1476107295:
PHP Warning: Undefined array key "coreField" in /home/<snipped>/public_html/typo3conf/ext/mask/Classes/Controller/AjaxController.php line 407
TYPO3\CMS\Core\Error\Exception thrown in file /home/<snipped>/public_html/typo3/sysext/core/Classes/Error/ErrorHandler.php in line 145.
Requested URL: https://sandpit.<snipped>.com.au/typo3/ajax/mask/loadElement?token=--AnonymizedToken--&type=tt_content&key=testelement
Not a programmer, but adding ?? null to line 407 allowed the config to load.
Hi experimenting with Typo3 11 and PHP 8 in a test site. I noticed that loading the mask BE interface and clicking on a saved CE wouldn't load its field configuration. System > log message below.
Not a programmer, but adding
?? null
to line 407 allowed the config to load.