From d2d00e7a1f15ad3220ec16a75ebb75672640ac31 Mon Sep 17 00:00:00 2001 From: Arthur Date: Thu, 20 Feb 2014 12:37:27 +0100 Subject: [PATCH] =?UTF-8?q?#74=20-=20tu=20as=20l'air=20de=20gal=C3=A9rer?= =?UTF-8?q?=20Mitsu=20:p?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 15e3440..4f521cb 100644 --- a/index.php +++ b/index.php @@ -921,7 +921,9 @@ if( !empty($_POST['opml_file']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY // on recuperre le contenu du buffer $contenuCache = ob_get_contents(); ob_end_clean(); // on termine la bufferisation - file_put_contents("$fichierCache",$contenuCache, LOCK_EX); // on écrit le contenu du buffer dans le fichier cache + if( !empty($contenuCache) ) { + file_put_contents("$fichierCache",$contenuCache, LOCK_EX); // on écrit le contenu du buffer dans le fichier cache + } echo $contenuCache; // et on sort // sinon le fichier cache existe déjà, on ne génère pas la page // et on envoie le fichier statique à la place @@ -999,7 +1001,9 @@ if( !empty($_POST['opml_file']) && ALLOW_NEW_AUTOBLOGS && ALLOW_NEW_AUTOBLOGS_BY // on recuperre le contenu du buffer $contenuCache = ob_get_contents(); ob_end_clean(); // on termine la bufferisation - file_put_contents("$fichierCache",$contenuCache, LOCK_EX); // on écrit le contenu du buffer dans le fichier cache + if( !empty($contenuCache) ) { + file_put_contents("$fichierCache",$contenuCache, LOCK_EX); // on écrit le contenu du buffer dans le fichier cache + } echo $contenuCache; // et on sort // sinon le fichier cache existe déjà, on ne génère pas la page // et on envoie le fichier statique à la place