I got two TYPO3 CMS instances. One was setup with version 8.7.x and one was upgraded to 8.7.x from 7.6.x.
I created a content element with CType textpic
containing the following text in both instances (got it from source code from ckeditor):
<p>Test</p>
<p> </p>
<p>text</p>
In the database, both tt_content
entries look like this:
<p>Test</p>
<p>text</p>
Now, we come to the frontend.
TYPO3 CMS which was setup with version 8.7.x renders the following HTML code:
<p>Test</p><p> </p><p>text</p>
TYPO3 CMS which was upgraded to version 8.7.x renders the following HTML code:
<p>Test</p><p></p><p>text</p>
The
is missing in the upgraded instance.
I use fluid_styled_content
in both instances. Why the instances behaviour is not the same?