Index: typo3/sysext/cms/layout/db_layout.php =================================================================== --- typo3/sysext/cms/layout/db_layout.php (revision 9052) +++ typo3/sysext/cms/layout/db_layout.php (working copy) @@ -546,7 +546,27 @@ $body = $this->renderListContent(); // All other listings } + // If page is a sysfolder + if ($this->pageinfo['doktype'] == 254) { + // access to list module + $moduleLoader = t3lib_div::makeInstance('t3lib_loadModules'); + $moduleLoader->load($GLOBALS['TBE_MODULES']); + $modules = $moduleLoader->modules; + + if (is_array($modules['web']['sub']['list'])) { + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + '' . + $GLOBALS['LANG']->getLL('link_to_listmodule') . '', + $GLOBALS['LANG']->getLL('clickAPage_header'), + t3lib_FlashMessage::INFO + ); + $body = $flashMessage->render() . $body; + } + } + + if ($this->pageinfo['content_from_pid']) { $contentPage = t3lib_BEfunc::getRecord('pages', intval($this->pageinfo['content_from_pid'])); $title = t3lib_BEfunc::getRecordTitle('pages', $contentPage); Index: typo3/sysext/cms/layout/locallang.xml =================================================================== --- typo3/sysext/cms/layout/locallang.xml (revision 9052) +++ typo3/sysext/cms/layout/locallang.xml (working copy) @@ -82,6 +82,7 @@ + \ No newline at end of file