diff --git a/build/lightdb/core/lightdb.php b/build/lightdb/core/lightdb.php index eeec1c5..2363c70 100644 --- a/build/lightdb/core/lightdb.php +++ b/build/lightdb/core/lightdb.php @@ -276,6 +276,7 @@ /* (2) On réarrange la bd pour supprimer la ligne */ $tmpfilename = __ROOT__.'/tmp/'.uniqid().'.dat'; $tmpfile = new \SplFileObject($tmpfilename, 'w'); + \chmod($tmpfilename, 0775); $this->driver->seek(0); // On recopie toutes les lignes sauf celle à supprimer dans un fichier temporaire @@ -366,6 +367,7 @@ /* (1) On réarrange la bd pour supprimer la ligne */ $tmpfilename = __ROOT__.'/tmp/'.uniqid().'.dat'; $tmpfile = new \SplFileObject($tmpfilename, 'w'); + \chmod($tmpfilename, 0775); $this->driver->seek(0); /* (2) On recopie toutes les lignes sauf celles à supprimer dans un fichier temporaire */