From 3ca0e8624eeec5d9c6bdd48a5a1d38595b261782 Mon Sep 17 00:00:00 2001 From: Benni Mack <benni@typo3.org> Date: Thu, 5 Oct 2017 08:48:36 +0200 Subject: [PATCH] [BUGFIX] Add title tag to anchor in Fluid Styled Content uploads Resolves: #81990 Releases: master, 8.7 Change-Id: Id52849587f3ad438d65f48d01a8930a646829dd4 Reviewed-on: https://review.typo3.org/54298 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Joerg Boesche <typo3@joergboesche.de> Tested-by: Joerg Boesche <typo3@joergboesche.de> Reviewed-by: Susanne Moog <susanne.moog@typo3.org> Tested-by: Susanne Moog <susanne.moog@typo3.org> Reviewed-by: Stefan Neufeind <typo3.neufeind@speedpartner.de> Tested-by: Stefan Neufeind <typo3.neufeind@speedpartner.de> Reviewed-by: Benni Mack <benni@typo3.org> Tested-by: Benni Mack <benni@typo3.org> --- .../Resources/Private/Templates/Uploads.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typo3/sysext/fluid_styled_content/Resources/Private/Templates/Uploads.html b/typo3/sysext/fluid_styled_content/Resources/Private/Templates/Uploads.html index 3d52c6cccd61..8ca71c46fe90 100644 --- a/typo3/sysext/fluid_styled_content/Resources/Private/Templates/Uploads.html +++ b/typo3/sysext/fluid_styled_content/Resources/Private/Templates/Uploads.html @@ -12,7 +12,7 @@ <f:if condition="{data.uploads_type} == 2"> <f:if condition="{f:uri.image(src: 'file:{f:if(condition: file.originalFile, then: \'file:{file.originalFile.uid}\', else: \'file:{file.uid}\')}')} != '/'"> <f:then> - <a href="{file.publicUrl}" {f:if(condition:data.target,then: ' target="{data.target}"')}> + <a href="{file.publicUrl}" {f:if(condition:data.target,then: ' target="{data.target}"')}{f:if(condition: file.title, then: ' title="{file.title}"')}> <f:media file="{file}" width="150" alt="{file.properties.alternative}" /> </a> </f:then> @@ -22,7 +22,7 @@ </f:if> </f:if> <div> - <a href="{file.publicUrl}" {f:if(condition:data.target,then: ' target="{data.target}"')}> + <a href="{file.publicUrl}" {f:if(condition:data.target,then: ' target="{data.target}"')}{f:if(condition: file.title, then: ' title="{file.title}"')}> <span class="ce-uploads-fileName">{f:if(condition: file.properties.title, then: file.properties.title, else: file.name) -> f:format.htmlspecialchars()}</span> </a> <f:if condition="{file.properties.description}"> -- GitLab