Index: typo3/mod/tools/em/class.em_index.php =================================================================== --- typo3/mod/tools/em/class.em_index.php (revision 6105) +++ typo3/mod/tools/em/class.em_index.php (working copy) @@ -4317,7 +4317,7 @@ foreach($remDirs as $removeRelDir) { $removeDir = $removePath.$removeRelDir; if (@is_dir($removeDir)) { - rmdir($removeDir); + @rmdir($removeDir); clearstatcache(); if (@is_dir($removeDir)) { $errors[] = sprintf($GLOBALS['LANG']->getLL('rmExtDir_error_files_left'), @@ -4331,7 +4331,7 @@ // If extension dir should also be removed: if (!$removeContentOnly) { - rmdir($removePath); + @rmdir($removePath); clearstatcache(); if (@is_dir($removePath)) { $errors[] = sprintf($GLOBALS['LANG']->getLL('rmExtDir_error_folders_left'),