Actions
Bug #17230
closedlinks entered in <th>-tag with the RTE are not parsed on the frontend
Status:
Closed
Priority:
Should have
Assignee:
Category:
Content Rendering
Target version:
-
Start date:
2007-04-23
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If you insert a link in <th>-tablecells via RTE, it will not be parsed. The Text in the source is the same as in the database (...<link....). In the RTE-Backend everything looks fine.
Links in normal <td>-tablecells are treatened the right way.
Typo3 4.0.5 on Linux
(issue imported from #M5476)
Updated by Stanislas Rolland almost 17 years ago
The problem is not related to any RTE.
I think is due to the handling of HTMLtableCells in tslib_content.
Updated by Administrator Admin over 16 years ago
The problem occurred because of the following line
$colParts = $htmlParser->splitIntoBlock('td',$vv);
in class.tslib_content.php, function parseFunc, line 4163. If you change it to
$colParts = $htmlParser->splitIntoBlock('td,th',$vv);
it works. I think it should be changed in the future releases, too.
Actions