Index: typo3/sysext/cms/layout/db_layout.php =================================================================== --- typo3/sysext/cms/layout/db_layout.php (revision 9404) +++ typo3/sysext/cms/layout/db_layout.php (working copy) @@ -554,7 +554,33 @@ $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('goToListModuleMessage') . '

+
+

' . + t3lib_iconWorks::getSpriteIcon('actions-system-list-open') . + '' . + $GLOBALS['LANG']->getLL('goToListModule') . ' + +

', + '', + 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 9404) +++ typo3/sysext/cms/layout/locallang.xml (working copy) @@ -83,6 +83,8 @@ + + \ No newline at end of file