Index: typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php =================================================================== --- typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php (Revision 6782) +++ typo3/sysext/wizard_crpages/class.tx_wizardcrpages_webfunc_2.php (Arbeitskopie) @@ -129,9 +129,22 @@ $tce->start($data,array()); $tce->process_datamap(); t3lib_BEfunc::getSetUpdateSignal('updatePageTree'); + + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + '', + $GLOBALS['LANG']->getLL('wiz_newPages_create') + ); } else { - $theCode.=$GLOBALS['TBE_TEMPLATE']->rfw($LANG->getLL('wiz_newPages_noCreate').'

'); + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + '', + $GLOBALS['LANG']->getLL('wiz_newPages_noCreate'), + t3lib_FlashMessage::ERROR + ); } + + $theCode.= $flashMessage->render(); // Display result: $menuItems = $sys_pages->getMenu($this->pObj->id,'*','sorting','',0); Index: typo3/sysext/wizard_crpages/locallang.xml =================================================================== --- typo3/sysext/wizard_crpages/locallang.xml (Revision 6782) +++ typo3/sysext/wizard_crpages/locallang.xml (Arbeitskopie) @@ -18,6 +18,7 @@ + \ No newline at end of file