---
title: "Deprecation: #93060 - Shortcut title must be set by controllers"
manual: "TYPO3 Core Changelog"
version: "main"
permalink: "https://docs.typo3.org/permalink/changelog:changelog-deprecation-93060-shortcuttitlemustbesetbycontrollers"
source: "Changelog/11.0/Deprecation-93060-ShortcutTitleMustBeSetByControllers.rst"
typo3-version: "11.0"
typo3-major: 11
type: "deprecation"
issue: 93060
forge: "https://forge.typo3.org/issues/93060"
tags: ["Backend", "PHP-API", "NotScanned", "ext:backend"]
rendered: "2026-09-24T21:45:06+00:00"
---

# Deprecation: #93060 - Shortcut title must be set by controllers {#changelog-deprecation-93060-shortcuttitlemustbesetbycontrollers}

See [forge#93060](https://forge.typo3.org/issues/93060)

## Description {#description}

Previously the class `ShortcutRepository` automatically generated a
shortcut title based on the given arguments. This generation was never reliable,
especially for custom extension code, since the repository
does not know about controller specific logic. Therefore, this functionality
has now been marked as deprecated. Backend controllers which add a shortcut button to
their module header are now required to also set the desired title.

## Impact {#impact}

Adding a new shortcut button without defining the `$displayName` triggers a PHP `E_USER_DEPRECATED` error.

## Affected Installations {#affected-installations}

All installations using the shortcut button API without defining the
`$displayName` property.

## Migration {#migration}

Define the title with
`\TYPO3\CMS\Backend\Template\Components\Buttons\Action\ShortcutButton->setDisplayName()`.
