diff --git a/typo3/sysext/info/Classes/Controller/InfoModuleController.php b/typo3/sysext/info/Classes/Controller/InfoModuleController.php index 3a8e420c56c49e21cd5c07afee65ea9c61335c0a..f171989eda737e5eab90db95afc2dda3929e88e7 100644 --- a/typo3/sysext/info/Classes/Controller/InfoModuleController.php +++ b/typo3/sysext/info/Classes/Controller/InfoModuleController.php @@ -157,7 +157,11 @@ class InfoModuleController // Shortcut $shortcutButton = $buttonBar->makeShortcutButton() ->setRouteIdentifier($this->currentModule->getIdentifier()) - ->setDisplayName($this->getLanguageService()->sL($this->currentModule->getTitle())) + ->setDisplayName(sprintf( + '%s [%d]', + $this->getLanguageService()->sL($this->currentModule->getTitle()), + $this->id + )) ->setArguments(['id' => $this->id]); $buttonBar->addButton($shortcutButton, ButtonBar::BUTTON_POSITION_RIGHT); }