Index: typo3/sysext/cms/tslib/class.tslib_content.php =================================================================== --- typo3/sysext/cms/tslib/class.tslib_content.php (revision 6598) +++ typo3/sysext/cms/tslib/class.tslib_content.php (working copy) @@ -7783,6 +7783,9 @@ if ($table=='pages') { $query.=' '.$GLOBALS['TSFE']->sys_page->where_hid_del. $GLOBALS['TSFE']->sys_page->where_groupAccess; + if(isset($conf['checkDoktype']) && $conf['checkDoktype'] == 0) { + $query = str_replace(' AND pages.doktype<200', '', $query); + } } else { $query.=$this->enableFields($table); }