Switch to custom compiled php

This commit is contained in:
Daniel Winzen
2019-10-15 19:37:51 +02:00
parent ee4856e5fc
commit 6052e57112
13 changed files with 357 additions and 41 deletions

View File

@ -439,9 +439,9 @@ function ftp_recursive_delete($ftp, $file){
}
}
ftp_chdir($ftp, '..');
ftp_rmdir($ftp, $file);
@ftp_rmdir($ftp, $file);
}else{
ftp_delete($ftp, $file);
@ftp_delete($ftp, $file);
}
}