[Flow] [ANN] TYPO3 Flow 3.0.0beta1 released

Bastian Waidelich bastian at typo3.org
Tue Mar 10 11:42:04 CET 2015


On 09.03.15, at 11:25, Mira Frei wrote:

> Since updating to this release I have a problem with templating.
>
> In my template I have this:
> <f:translate id="write.sent" arguments="{0: '{f:translate(id:
> \'write.jobs\') -> f:link.action(action: \'jobs\')}'}" />

> [...] The html-code is rawly displayed. Why it is not converted to a real
> link? It worked before in flow version 2.x.


This is probably due to one of the breaking changes introduced with Flow 
3.0. Make sure to read the upgrading instructions, especially
https://git.typo3.org/Packages/TYPO3.Flow.git/blob/refs/heads/3.0:/Resources/Private/Installer/Distribution/Essentials/Upgrading.rst#l238

In this case you can probably fix it with:

<f:format.raw>
	<f:translate id="write.sent" arguments="{0: '{f:translate(id: 
\'write.jobs\') -> f:link.action(action: \'jobs\')}'}" />
</f:format.raw>

Or with inline syntax:

{f:translate(id: 'write.sent', arguments: '{0: \'{f:translate(id: 
"write.jobs") -> f:link.action(action: "jobs")}\'}') -> f:format.raw()}



-- 
Bastian Waidelich


More information about the Flow mailing list