diff --git a/typo3/sysext/beuser/Classes/Service/UserInformationService.php b/typo3/sysext/beuser/Classes/Service/UserInformationService.php index 25a246d80fdb..8251b21cc25e 100644 --- a/typo3/sysext/beuser/Classes/Service/UserInformationService.php +++ b/typo3/sysext/beuser/Classes/Service/UserInformationService.php @@ -231,7 +231,7 @@ protected function convert(BackendUserAuthentication $user): array continue; } $label = $specialItem['label']; - $icon = $this->iconFactory->mapRecordTypeToIconIdentifier('pages', ['doktype' => $specialItem['icon']]); + $icon = $specialItem['icon'] ?? 'apps-pagetree-page-default'; $data['pageTypes'][] = ['label' => $label, 'value' => $value, 'icon' => $icon]; }