Actions
Bug #17660
closedRTE incorrectly nests tags
Start date:
2007-10-09
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
The Rich Text Editor incorrectly nests <p> tags inside <a> tags.
Steps to reproduce:- Open a new normal text field
- Set a simple link, e.g. to google; the code produced is
<a href="http://google.de">Google</a> - Now hit "Enter" at the front of the link; the code now is
<p></p><a href="http://google.de"><p>Google</p></a>
- This code is not correct HTML
- It breaks with tidy! Tidy fixes this to
<p></p><a href="http://google.de"></a><p>Google</p>
so the link is effectively lost.
This bug happens on Typo3 4.1.1 and 4.1.3-dev (updated two weeks ago, svn r2520)
(issue imported from #M6476)
Files
Actions