[TYPO3-dev] Bug when copying standard content into other languages

Mark Howells-Mead m.howells-mead at frappant.ch
Wed Jul 9 11:32:28 CEST 2014


The problem in this instance has been solved. I managed to track it down in the end to a Fluid template implementation which uses v:content.resources.fal as part of a call to v:resource.image.

The following code is part of an extension to render FCEs. It should generate a thumbnail in the backend preview section.

<v:resource.image identifier="{v:content.resources.fal(field: 'image') -> v:iterator.extract(key: 'id') -> v:iterator.first()}» />

By replacing this with the following, the error no longer occurs.

<v:var.set name="falImage" value="{v:content.resources.fal(field: 'image') -> v:iterator.extract(key: 'id') -> v:iterator.first()}"/>
<v:resource.image identifier=«{falImage.id}» />



More information about the TYPO3-dev mailing list