Index: typo3/mod/web/func/index.php =================================================================== --- typo3/mod/web/func/index.php (Revision 6499) +++ typo3/mod/web/func/index.php (Arbeitskopie) @@ -143,8 +143,14 @@ $markers['CONTENT'] = $this->content; } else { // If no access or if ID == zero - $this->content = $this->doc->section($LANG->getLL('title'), $LANG->getLL('clickAPage_content'), 0, 1); - + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + $LANG->getLL('clickAPage_content'), + $LANG->getLL('title'), + t3lib_FlashMessage::INFO + ); + $this->content = $flashMessage->render(); + // Setting up the buttons and markers for docheader $docHeaderButtons = $this->getButtons(); $markers['CSH'] = $docHeaderButtons['csh']; Index: typo3/sysext/cms/layout/db_layout.php =================================================================== --- typo3/sysext/cms/layout/db_layout.php (Revision 6499) +++ typo3/sysext/cms/layout/db_layout.php (Arbeitskopie) @@ -563,7 +563,13 @@ if (top.fsMod) top.fsMod.recentIds["web"] = '.intval($this->id).'; '); - $body = $this->doc->section($LANG->getLL('clickAPage_header'), $LANG->getLL('clickAPage_content'), 0, 1); + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + $LANG->getLL('clickAPage_content'), + $LANG->getLL('clickAPage_header'), + t3lib_FlashMessage::INFO + ); + $body = $flashMessage->render(); // Setting up the buttons and markers for docheader $docHeaderButtons = array( Index: typo3/sysext/setup/mod/index.php =================================================================== --- typo3/sysext/setup/mod/index.php (Revision 6499) +++ typo3/sysext/setup/mod/index.php (Arbeitskopie) @@ -374,7 +374,13 @@ // Notice $this->content .= $this->doc->spacer(30); - $this->content .= $this->doc->section('', $LANG->getLL('activateChanges')); + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + $LANG->getLL('activateChanges'), + '', + t3lib_FlashMessage::INFO + ); + $this->content .= $flashMessage->render(); // Setting up the buttons and markers for docheader $docHeaderButtons = $this->getButtons();