Skip to content
Snippets Groups Projects
Commit ef403b4e authored by Daniel Hürtgen's avatar Daniel Hürtgen Committed by Wouter Wolters
Browse files

[TASK] NEWS.txt entry about changed Fluid ImageViewHelper

The Fluid ImageViewHelper changed its default rendering
behaviour for title attributes, NEWS.txt gets a hint about this.

Releases: 6.2
Resolves: #48046
Related: #47552
Change-Id: I0afdf76844575786de40560a37ed758768f192d0
Reviewed-on: https://review.typo3.org/20633
Reviewed-by: Christian Kuhn
Tested-by: Christian Kuhn
Reviewed-by: Wouter Wolters
Tested-by: Wouter Wolters
parent fbb369f6
Branches
Tags
No related merge requests found
......@@ -45,3 +45,19 @@ Extbase
-------------------------------------------------------------------------------
Fluid
-------------------------------------------------------------------------------
* Image view helper does not render title tag by default
In previous versions of fluid the image view helper always rendered the
title attribute. If not set, the value of the required alt attribute was set as
title.
This fallback was removed with version 6.2. If not specifically set, title
is not rendered anymore.
Example:
Fluid Tag
<f:image src="{file}" alt="Alt-Attribute" />
will render
<img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" />
and not
<img src="fileadmin/xxxx.jpg" alt="Alt-Attribute" title="Alt-Attribute" />
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment