Bug #33114
RTE parse func statements in wrong file
| Status: | New | Start date: | 2012-01-11 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | Spent time: | - | |
| Target version: | - | |||
| Votes: | 0 |
Description
In version 1.6.0, the TypoScript statements for allowing definition lists and removing paragraph wrapping in tables (see below) are included in pageTSconfig.txt. They do not take effect. They need to be moved from page TS to normal TS setup, e.g., setup.txt.
lib {
parseFunc_RTE {
### allow definition lists
allowTags := addToList(dl,dt,dd)
### tags that must not be wrapped
nonTypoTagStdWrap.encapsLines.encapsTagList := addToList(dl, dt, dd)
### avoid unwanted p-elements in th/td on the way to FE
externalBlocks.table.HTMLtableCells.default >
externalBlocks.table.HTMLtableCells.default.stdWrap.parseFunc =< lib.parseFunc
}
}