Skip to content
Snippets Groups Projects
Commit c75a9066 authored by Georg Ringer's avatar Georg Ringer Committed by Andreas Fernandez
Browse files

[BUGFIX] Show value '0' in cells of table content element

Adjust the check of the value to make it also possible
to show the valid cell value '0' of content element table.

Resolves: #83816
Releases: master, 9.5
Change-Id: Ie2f8d30b02deda5be88824cef334bf672d5cb35e
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63684


Reviewed-by: default avatarMarkus Klein <markus.klein@typo3.org>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarStefan Froemken <froemken@gmail.com>
Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Tested-by: default avatarStefan Froemken <froemken@gmail.com>
Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
parent b713e1da
Branches
Tags
No related merge requests found
......@@ -43,9 +43,9 @@
</f:else>
</f:if>
<f:if condition="{cell}">
<f:if condition="{cell} != ''">
<f:then>
<f:format.nl2br>{cell}</f:format.nl2br>
{cell -> f:format.nl2br()}
</f:then>
<f:else>
&nbsp;
......
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