Skip to content

Commit

Permalink
[BUGFIX] Replace undefined variable with locallang key
Browse files Browse the repository at this point in the history
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: core-ci <typo3@b13.com>
Tested-by: Oliver Bartsch <bo@cedev.de>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
  • Loading branch information
o-ba committed Dec 13, 2022
1 parent 9a4fed4 commit a664176
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit a664176

Please sign in to comment.