Support #8490
wrap for table.field always delivers html entities instead of plain code
| Status: | Resolved | Start date: | 2010-06-24 | |
|---|---|---|---|---|
| Priority: | Must have | Due date: | 2010-06-28 | |
| Assignee: | Dirk Wildt | % Done: | 100% |
|
| Category: | Wrapping | Spent time: | - | |
| Target version: | - | |||
| Votes: | 0 |
Description
plugin.tx_browser_pi1.views.list {
1 {
select = table.uid
table.uid.stdWrap.htmlSpecialChars = 1
table.uid.wrap= <input name="var" value=" | ">
}
}
delivers the following HTML:
< ;input name="e;var"e; value="e;8"e;> ;
The value is correct uid as expected but
htmlSpecialChars does not help at all (tried many combinations).
How do we get plain HTML?
Thank you,
Martin
History
Updated by Dirk Wildt almost 3 years ago
- Tracker changed from Bug to Support
- Status changed from New to Accepted
Updated by Dirk Wildt almost 3 years ago
Dear Martin,
Thanks for your report.
The browser is using the properties of lib.parseFunc_RTE for the stdWrap process.
But you can controll the behaviour in the TypoScript of the browser. See for example:
*plugin.tx_browser_pi1.general_stdWrap.parseFunc
and especially
*plugin.tx_browser_pi1.general_stdWrap.parseFunc.allowTags
*plugin.tx_browser_pi1.general_stdWrap.parseFunc.nonTypoTagStdWrap.HTMLparser.htmlSpecialChars
Updated by Dirk Wildt almost 3 years ago
- Due date set to 2010-06-28
- Status changed from Accepted to Resolved
- % Done changed from 0 to 100
Updated by Martin almost 3 years ago
Thank you for this helpful reply, it works.
I hope somebody else who has this issue will find this ticket useful...
Martin