From f083283b6c59235dd364aed73b3e2580f661e370 Mon Sep 17 00:00:00 2001 From: xdrm-brackets Date: Thu, 14 Sep 2017 16:24:57 +0200 Subject: [PATCH] No more lightdb:delete v12 --- build/lightdb/core/lightdb.php | 2 ++ 1 file changed, 2 insertions(+) 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 */