From c640740e5e678127d683c2a65a86bb400df9b7eb Mon Sep 17 00:00:00 2001 From: Josef Glatz <josefglatz@gmail.com> Date: Sun, 8 Jan 2017 21:54:28 +0100 Subject: [PATCH] [BUGFIX] Fix typo in ext:backend fluid template Resolves: #79202 Releases: master, 7.6 Change-Id: Ie47e6b42a7429ce75a8d750c7e7aa7f1c1cb9bec Reviewed-on: https://review.typo3.org/51201 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Georg Ringer <georg.ringer@gmail.com> Tested-by: Georg Ringer <georg.ringer@gmail.com> Reviewed-by: Benni Mack <benni@typo3.org> Tested-by: Benni Mack <benni@typo3.org> --- .../Private/Templates/Wizards/ImageManipulationWizard.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typo3/sysext/backend/Resources/Private/Templates/Wizards/ImageManipulationWizard.html b/typo3/sysext/backend/Resources/Private/Templates/Wizards/ImageManipulationWizard.html index 24a4ffd3fad8..cccf03a6a0ef 100644 --- a/typo3/sysext/backend/Resources/Private/Templates/Wizards/ImageManipulationWizard.html +++ b/typo3/sysext/backend/Resources/Private/Templates/Wizards/ImageManipulationWizard.html @@ -24,7 +24,7 @@ <label for="ratio"><f:translate key="LLL:EXT:lang/Resources/Private/Language/locallang_wizards.xlf:imwizard.aspect-ratio" /></label> <div class="ratio-buttons t3js-ratio-buttons" data-toggle="buttons"> <f:for each="{ratios}" as="ratio" key="key" iteration="iteration"> - <label class="btn btn-default" data-method="setAspectRatio" data-option="{key}" title="{f:translate(key:'LLL:EXT:lang/Resources/Private/Language/locallang_wizards.xlf:imwizard.set-aspect-ratio')}"><input class="sr-only" id="aspestRatio{iteration.cycle}" name="aspestRatio" value="{key}" type="radio"> <span>{ratio}</span></label> + <label class="btn btn-default" data-method="setAspectRatio" data-option="{key}" title="{f:translate(key:'LLL:EXT:lang/Resources/Private/Language/locallang_wizards.xlf:imwizard.set-aspect-ratio')}"><input class="sr-only" id="aspectRatio{iteration.cycle}" name="aspectRatio" value="{key}" type="radio"> <span>{ratio}</span></label> </f:for> </div> </div> -- GitLab