From f4c4cd00e3f3ed0769e8e4babd88aad11780dda3 Mon Sep 17 00:00:00 2001 From: Georg Ringer <georg.ringer@gmail.com> Date: Thu, 14 Dec 2017 14:33:04 +0100 Subject: [PATCH] [BUGFIX] Use correct language file location With the move of the PageInformationController with change #81865 some labels in the info module needs to be adopted. Resolves: #83326 Releases: master Change-Id: I1d171fd35acb555f8f9065e3700a2ed2324d64fd Reviewed-on: https://review.typo3.org/55073 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Markus Klein <markus.klein@typo3.org> Tested-by: Markus Klein <markus.klein@typo3.org> Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Tested-by: Wouter Wolters <typo3@wouterwolters.nl> --- .../info/Classes/Controller/PageInformationController.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/typo3/sysext/info/Classes/Controller/PageInformationController.php b/typo3/sysext/info/Classes/Controller/PageInformationController.php index fa45c174c916..e3487c61e3cf 100644 --- a/typo3/sysext/info/Classes/Controller/PageInformationController.php +++ b/typo3/sysext/info/Classes/Controller/PageInformationController.php @@ -33,9 +33,9 @@ class PageInformationController extends \TYPO3\CMS\Backend\Module\AbstractFuncti { return [ 'pages' => [ - 0 => $GLOBALS['LANG']->sL('LLL:EXT:frontend/Resources/Private/Language/locallang_webinfo.xlf:pages_0'), - 2 => $GLOBALS['LANG']->sL('LLL:EXT:frontend/Resources/Private/Language/locallang_webinfo.xlf:pages_2'), - 1 => $GLOBALS['LANG']->sL('LLL:EXT:frontend/Resources/Private/Language/locallang_webinfo.xlf:pages_1') + 0 => $GLOBALS['LANG']->sL('LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:pages_0'), + 2 => $GLOBALS['LANG']->sL('LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:pages_2'), + 1 => $GLOBALS['LANG']->sL('LLL:EXT:info/Resources/Private/Language/locallang_webinfo.xlf:pages_1') ], 'depth' => [ 0 => $GLOBALS['LANG']->sL('LLL:EXT:lang/Resources/Private/Language/locallang_core.xlf:labels.depth_0'), -- GitLab