Bug #22467 ยป 14128.diff
typo3/sysext/cms/tslib/class.tslib_content.php (working copy) | ||
---|---|---|
$conf['recursive'] = intval($conf['recursive']);
|
||
if ($conf['recursive'] > 0) {
|
||
foreach (explode(',', $conf['pidInList']) as $value) {
|
||
if ($value == 'this') {
|
||
$value = $GLOBALS['TSFE']->id;
|
||
}
|
||
$pidList .= $value . ',' . $this->getTreeList($value, $conf['recursive']);
|
||
}
|
||
$conf['pidInList'] = trim($pidList, ',');
|