#74 - tu as l'air de galérer Mitsu :p
This commit is contained in:
parent
a7285247c8
commit
d2d00e7a1f
1 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue