diff --git a/typo3/sysext/backend/Classes/Backend/ToolbarItems/ShortcutToolbarItem.php b/typo3/sysext/backend/Classes/Backend/ToolbarItems/ShortcutToolbarItem.php index b1ff716b93ce0c87e7b91308eb94398210d614c8..295b1efe44eb37becd802dfc80c10a1f45edc536 100644 --- a/typo3/sysext/backend/Classes/Backend/ToolbarItems/ShortcutToolbarItem.php +++ b/typo3/sysext/backend/Classes/Backend/ToolbarItems/ShortcutToolbarItem.php @@ -589,7 +589,11 @@ class ShortcutToolbarItem implements ToolbarItemInterface if (!empty($page)) { // Set the name to the title of the page if ($shortcut['type'] === 'other') { - $shortcutName = $page['title']; + if (empty($shortcutName)) { + $shortcutName = $page['title']; + } else { + $shortcutName .= ' (' . $page['title'] . ')'; + } } else { $shortcutName = $shortcutNamePrepend . ' ' . $languageService->sL($GLOBALS['TCA'][$shortcut['table']]['ctrl']['title']) . diff --git a/typo3/sysext/info/Classes/Controller/InfoModuleController.php b/typo3/sysext/info/Classes/Controller/InfoModuleController.php index 07c82e83d7707d735a1b9b070fcba506cffeef85..e6d0a194b6c83af727b69874b286fb6c06cf893d 100644 --- a/typo3/sysext/info/Classes/Controller/InfoModuleController.php +++ b/typo3/sysext/info/Classes/Controller/InfoModuleController.php @@ -192,6 +192,7 @@ class InfoModuleController extends BaseScriptClass // Shortcut $shortCutButton = $buttonBar->makeShortcutButton() ->setModuleName($this->moduleName) + ->setDisplayName($this->MOD_MENU['function'][$this->MOD_SETTINGS['function']]) ->setGetVariables([ 'M', 'id',