Actions
Bug #15301
closedXHTML of FORM cObj
Start date:
2005-12-21
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.8.1
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
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)
Actions