Actions
Bug #16611
closedstdWrap-property in stdWrap doesn't work like expected
Start date:
2006-09-30
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
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)
Actions