Bug #16611
closedstdWrap-property in stdWrap doesn't work like expected
0%
Description
If you do something like this:
page.5 = TEXT
page.5.stdWrap.wrap = <div> | </div>
the wrap is beeing ignored.
The reason is the function call in class.tslib_content.php, line 3204:
if ($conf['stdWrap']) { $content=$this->stdWrap($content,$conf['stdWrap.']); }
It should be
if (isset($conf['stdWrap.'])) { $content=$this->stdWrap($content,$conf['stdWrap.']); }
The way it is now, you need something like
page.5.stdwrap = sldfjkls
to get the recursive stdWrap working, which makes no sense.
I guess the problem exists since the introduction of this property, which was 3.6 or 3.8.
(issue imported from #M4312)
Updated by Brian Slezak almost 18 years ago
I've run across the same thing, and it is the simple fix that Irene describes above.
If one of the core guys come across this note, it only requires a one character fix.
-Brian
Updated by Martin Kutschker almost 18 years ago
This maybe is odd, but the way it always has been and is well documented in TSref:
http://typo3.org/documentation/document-library/references/doc_core_tsref/4.0.0/view/8/3/