Project

General

Profile

Bug #86819

Updated by Oliver Hader over 5 years ago

With the update to 8.7.20 the "&nbsp;" in an <p></p> were removed witch the result that many empty but needed lines/spaces were removed in the frontend. 

 With 8.7.19: 

 <pre><p>Zahnarzt <p>Zahnarzt XYZ<br />Strasse 123<br />1234 Ort</p><p>&nbsp;</p><p>Während der Praxis-Öffnungszeiten</p></pre> Praxis-Öffnungszeiten</p> 

 With 8.7.20: 

 <pre><p>Zahnarzt <p>Zahnarzt XYZ<br />Strasse 123<br />1234 Ort</p><p></p><p>Während der Praxis-Öffnungszeiten</p></pre> Praxis-Öffnungszeiten</p> 

 Since a <pre><p></p></pre> <p></p> is not visible in the browser (at least with browser default css) and a <pre><p>&nbsp;</p></pre> <p>&nbsp;</p> is - many website have a different look with the new version. 

 As a temporary solution you can include this line in the TypoScript typoscript setup in the website 

 <pre>lib.parseFunc_RTE.nonTypoTagStdWrap.encapsLines.innerStdWrap_all.ifBlank lib.parseFunc_RTE.nonTypoTagStdWrap.encapsLines.innerStdWrap_all.ifBlank = &nbsp;</pre> &nbsp; 

 or readd line 109 in typo3/sysext/fluid_styled_content/Configuration/TypoScript/Helper/ParseFunc.typoscript 

 see: https://github.com/TYPO3/TYPO3.CMS/commit/c23b1e1970d44cb3fc836db697650be568788218 

 I think the Issue #83795 has to be resolved in another way. 

 TYPO3 v9 not testet... 

Back