From 4a8c114034f63fcb31271fa692cf47308b1efc93 Mon Sep 17 00:00:00 2001 From: Georg Ringer <georg.ringer@gmail.com> Date: Thu, 2 Feb 2017 16:12:27 +0100 Subject: [PATCH] [BUGFIX] Move end tag of label in info module To make the click on the label work, move the end tag after the text. Resolves: #79603 Releases: master Change-Id: I5a8b0c5a2041118b3704bd1947c17dd833154c8a Reviewed-on: https://review.typo3.org/51511 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl> Reviewed-by: Susanne Moog <susanne.moog@typo3.org> Tested-by: Susanne Moog <susanne.moog@typo3.org> --- .../info_pagetsconfig/Resources/Private/Partials/Menu.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/info_pagetsconfig/Resources/Private/Partials/Menu.html b/typo3/sysext/info_pagetsconfig/Resources/Private/Partials/Menu.html index 88cbb08ff0b3..d72224c85f75 100644 --- a/typo3/sysext/info_pagetsconfig/Resources/Private/Partials/Menu.html +++ b/typo3/sysext/info_pagetsconfig/Resources/Private/Partials/Menu.html @@ -1,7 +1,9 @@ <div class="form-inline form-inline-spaced"> <f:format.raw>{dropdownMenu}</f:format.raw> <div class="checkbox"> - <label for="checkTsconf_alphaSort"><f:format.raw>{alphaSort}</f:format.raw></label> - {f:translate(key: 'LLL:EXT:info_pagetsconfig/Resources/Private/Language/locallang.xlf:sort_alphabetic')} + <label for="checkTsconf_alphaSort"> + <f:format.raw>{alphaSort}</f:format.raw> + {f:translate(key: 'LLL:EXT:info_pagetsconfig/Resources/Private/Language/locallang.xlf:sort_alphabetic')} + </label> </div> </div> -- GitLab