#1463 - unlink in ContentController::deleteinstallfiles() needs to have errors caught

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@43940 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Andrew O'Neil 2007-10-29 02:53:53 +00:00
parent a7a31335e2
commit 367cc65019

View File

@ -384,7 +384,7 @@ HTML
foreach($installfiles as $installfile) { foreach($installfiles as $installfile) {
if(file_exists('../' . $installfile)) { if(file_exists('../' . $installfile)) {
unlink('../' . $installfile); @unlink('../' . $installfile);
} }
if(file_exists('../' . $installfile)) { if(file_exists('../' . $installfile)) {