Index: typo3/alt_db_navframe.php =================================================================== --- typo3/alt_db_navframe.php (Revision 6499) +++ typo3/alt_db_navframe.php (Arbeitskopie) @@ -209,13 +209,27 @@ // Outputting Temporary DB mount notice: if ($this->active_tempMountPoint) { + $flashText = ' + ' . + $LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.temporaryDBmount',1) . + '
' . + $LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.path',1) . ': ' . + htmlspecialchars(t3lib_div::fixed_lgd_cs($this->active_tempMountPoint['_thePath'],-50)). + ' + '; + + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + $flashText, + '', + t3lib_FlashMessage::INFO + ); + + $this->content.= '
- '. - ''. - $LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.temporaryDBmount',1). - '
- '.$LANG->sl('LLL:EXT:lang/locallang_core.xml:labels.path',1).': '.htmlspecialchars(t3lib_div::fixed_lgd_cs($this->active_tempMountPoint['_thePath'],-50)).' + ' .$flashMessage->render() .'
'; } Index: typo3/mod/tools/em/class.em_index.php =================================================================== --- typo3/mod/tools/em/class.em_index.php (Revision 6499) +++ typo3/mod/tools/em/class.em_index.php (Arbeitskopie) @@ -2507,12 +2507,16 @@ $eC=2; } if (!$this->fe_user['username']) { - $content .= '

' . + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', sprintf($GLOBALS['LANG']->getLL('ext_details_no_username'), '', '' - ) . - '
'; + ), + '', + t3lib_FlashMessage::INFO + ); + $content .= '
' . $flashMessage->render(); + } } $this->content .= $this->doc->section( 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();