Skip to content
Snippets Groups Projects
Commit a6641769 authored by Oliver Bartsch's avatar Oliver Bartsch
Browse files

[BUGFIX] Replace undefined variable with locallang key

The title of the "edit column" button in the page
module is now using the correct locallang key
instead of an undefined variable.

Resolves: #99339
Releases: main, 11.5
Change-Id: Ic3a44174da62d25de06e1673dd5748dedf4aff0a
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77132


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
parent 9a4fed43
No related merge requests found
......@@ -3,7 +3,9 @@
<f:then>
<div class="t3-page-column-header-icons">
<f:if condition="{allowEditContent} && {column.editUrl}">
<a href="{column.editUrl}" title="{column.editLinkTitle}"><core:icon identifier="actions-document-open" /></a>
<a href="{column.editUrl}" title="{f:translate(key: 'LLL:EXT:backend/Resources/Private/Language/locallang_layout.xlf:editColumn')}">
<core:icon identifier="actions-document-open" />
</a>
</f:if>
</div>
{column.title}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment