Index: typo3/sysext/setup/mod/index.php =================================================================== --- typo3/sysext/setup/mod/index.php (revision 7568) +++ typo3/sysext/setup/mod/index.php (working copy) @@ -303,9 +303,23 @@ if ($this->isAdmin) { if (t3lib_div::_POST('deleteInstallToolEnableFile')) { unlink(PATH_typo3conf . 'ENABLE_INSTALL_TOOL'); + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + $LANG->getLL('enableInstallTool.fileDeleted'), + $LANG->getLL('enableInstallTool.file'), + t3lib_FlashMessage::INFO + ); + $this->content .= $flashMessage->render(); } if (t3lib_div::_POST('createInstallToolEnableFile')) { touch(PATH_typo3conf . 'ENABLE_INSTALL_TOOL'); + $flashMessage = t3lib_div::makeInstance( + 't3lib_FlashMessage', + $LANG->getLL('enableInstallTool.fileCreated'), + $LANG->getLL('enableInstallTool.file'), + t3lib_FlashMessage::INFO + ); + $this->content .= $flashMessage->render(); } } Index: typo3/sysext/setup/mod/locallang.xml =================================================================== --- typo3/sysext/setup/mod/locallang.xml (revision 7568) +++ typo3/sysext/setup/mod/locallang.xml (working copy) @@ -106,7 +106,10 @@ + + +