From fe618d52c086ad88bee69462152b95bf1d18860c Mon Sep 17 00:00:00 2001 From: Nikita Hovratov <nikita.h@live.de> Date: Sat, 16 Jul 2022 03:06:30 +0200 Subject: [PATCH] [BUGFIX] Add missing parenthesis in ElementInformation.html MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolves: #97953 Releases: main, 11.5 Change-Id: Ie152dfdb8c08f20a835ac9a1c8cf56f1206c4fa1 Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75201 Tested-by: core-ci <typo3@b13.com> Tested-by: Björn Jacob <bjoern.jacob@tritum.de> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> Reviewed-by: Björn Jacob <bjoern.jacob@tritum.de> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> --- .../Private/Templates/ContentElement/ElementInformation.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html b/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html index c118bad86dfe..982c55c4f237 100644 --- a/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html +++ b/typo3/sysext/backend/Resources/Private/Templates/ContentElement/ElementInformation.html @@ -183,7 +183,7 @@ </f:then> <f:else> <td class="col-icon"></td> - <td class="col-title"><f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:show_item.php.missing_record" /> (uid={line.row.recuid}</td> + <td class="col-title"><f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:show_item.php.missing_record" /> (uid={line.row.recuid})</td> <td>{line.row.title}</td> <td></td> </f:else> @@ -214,7 +214,7 @@ </f:then> <f:else> <td class="col-icon"></td> - <td class="col-title"><f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:show_item.php.missing_record" /> (uid={line.row.recuid}</td> + <td class="col-title"><f:translate key="LLL:EXT:core/Resources/Private/Language/locallang_core.xlf:show_item.php.missing_record" /> (uid={line.row.recuid})</td> <td>{line.row.title}</td> <td></td> </f:else> -- GitLab