Bug #15301
closedXHTML of FORM cObj
0%
Description
some document types(strict, for example) do not support attribute "wrap"
class.ts_lib_content :: FORM contains this line
1707: $wrap = $wrap ? ' wrap="'.$wrap.'"' : ' wrap="virtual"';
as we see even if we do not set "wrap" typo3 will add it with "virtual" value
i suggest this
$wrap = $wrap ? ' wrap="'.$wrap.'"' : ' ';
(issue imported from #M2075)
Updated by Sebastian Kurfuerst almost 19 years ago
Hi,
could you please have a look at this and give me some feedback?
tHNX,
Sebastian
Updated by Dmitry Pikhno almost 19 years ago
tt_content.mailform.20.noWrapAttr = 1
i found it in class.ts_lib_content :: FORM
if ($conf['noWrapAttr'] || $wrap === 'disabled') {
$wrap='';
......
sorry for wasting your time.
probably it make sense to add this in TSref:FORM
Updated by Sebastian Kurfuerst almost 19 years ago
I'll take care of the docs.
Greets, Sebastian
Updated by Sebastian Kurfuerst almost 19 years ago
will be fixed in the next release of tsref.
greets, sebastian