Bug #25351
closedUnderlining text does not work
0%
Description
I can underline text, but after I save the element, the underlining disappears.
(issue imported from #M17980)
Updated by Stanislas Rolland over 13 years ago
The u tag is stripped out on the way to the database by the default processing options because it is deprecated. You will need to add it to RTE.default.proc.allowTags in Page TSConfig:
RTE.default.proc {
allowTags := addToList(u)
entryHTMLparser_db.allowTags := addToList(u)
}
Then you still have to remove it from "removeTags" where it is
explicitly mentioned:
RTE.default {
removeTags := removeFromList(u)
proc.entryHTMLparser_db.removeTags := removeFromList(u)
}
Updated by Alexander Opitz over 10 years ago
- Status changed from New to Needs Feedback
- Target version deleted (
0) - TYPO3 Version set to 4.5
- Is Regression set to No
Hi,
as this issue is very old. Does the problem still exists within newer versions of TYPO3 CMS (6.2.3)?
Updated by Alexander Opitz about 10 years ago
- Status changed from Needs Feedback to Closed
No feedback within the last 90 days => closing this issue.
If you think that this is the wrong decision or experience this issue again, then please write to the mailing list typo3.teams.bugs with issue number and an explanation or open a new ticket and add a relation to this ticket number.