--- db_layout_orig.php 2012-04-29 21:49:35.000000000 +0200 +++ db_layout.php 2012-04-29 22:00:14.000000000 +0200 @@ -503,8 +503,17 @@ $body = $this->renderListContent(); // All other listings } + //If page should be shown in list module + $forwardToListDoctype = explode(',',$this->modTSconfig['properties']['forwardToListDoctype']); + if(in_array($this->pageinfo['doktype'],$forwardToListDoctype)) { + $listModuleURL = t3lib_div::getIndpEnv('TYPO3_SITE_URL').TYPO3_mainDir.'mod.php?M=web_list&id='.intval($this->pageinfo['uid']); + $body = ''; + } + // If page is a folder - if ($this->pageinfo['doktype'] == 254) { + if ($this->pageinfo['doktype'] == 254 && !in_array($this->pageinfo['doktype'],$forwardToListDoctype)) { // access to list module $moduleLoader = t3lib_div::makeInstance('t3lib_loadModules');