Actions
Bug #84452
closedTypoScript stdWrap property round will never be called
Start date:
2018-03-17
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
no-brainer
Is Regression:
Sprint Focus:
Description
Hello Core-Team,
I have following TS:
page.123 = COA page.123.10 = TEXT page.123.10.value = 2.315 page.123.10.round.roundType = ceil page.123.10.round.decimals = 2 page.123.10.wrap = |<br> page.123.20 = TEXT page.123.20.value = 2.315 page.123.20.round.roundType = floor page.123.20.round.decimals = 2 page.123.20.wrap = |<br> page.123.30 = TEXT page.123.30.value = 2.315 page.123.30.round.roundType = round page.123.30.round.decimals = 2 page.123.30.wrap = |<br>
But all these configurations result in an untouched value in frontend:
2.315
2.315
2.315
IMO it should be
3
2
2.32
Seems there is something wrong in ContentObjectRenderer
Stefan
Actions