[9.1.13] erreur supp metaimage

This commit is contained in:
fredtempez 2019-06-20 18:58:49 +02:00
parent 783bf103eb
commit 528153e13c
1 changed files with 3 additions and 1 deletions

View File

@ -240,7 +240,9 @@ class config extends common {
$data = 'data:image/jpeg;base64,'.$screenshot;
$data = base64_decode(preg_replace('#^data:image/\w+;base64,#i', '', $data));
// Effacer la miniature
unlink (self::FILE_DIR.'thumb/screenshot.png');
if (file_exists(self::FILE_DIR.'thumb/screenshot.png')) {
unlink (self::FILE_DIR.'thumb/screenshot.png');
}
file_put_contents( self::FILE_DIR.'source/screenshot.png',$data);
$success =true;
}