Index: typo3/sysext/cms/tslib/class.tslib_content.php =================================================================== --- typo3/sysext/cms/tslib/class.tslib_content.php (revision 7369) +++ typo3/sysext/cms/tslib/class.tslib_content.php (working copy) @@ -7641,6 +7647,9 @@ $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, ',');