From fb56c915834c42f4888676817eb2ee24ecebe019 Mon Sep 17 00:00:00 2001 From: Antoine Pitrou <pitrou@free.fr> Date: Sun, 3 Mar 2002 23:03:44 +0000 Subject: [PATCH] =?UTF-8?q?Recalculer=20le=20squelette=20lorsque=20mes=5Ff?= =?UTF-8?q?onctions=20est=20modifi=C3=A9=20(en=20plus=20de=20inc-calcul-sq?= =?UTF-8?q?uelette=20et=20du=20squelette=20lui-m=C3=AAme).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inc-calcul.php3 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inc-calcul.php3 b/inc-calcul.php3 index d4c29024fa..56638166cb 100644 --- a/inc-calcul.php3 +++ b/inc-calcul.php3 @@ -218,7 +218,9 @@ function executer_squelette($squelette, $contexte) { $use_cache = false; if (file_exists($squelette_cache)) { $t = filemtime($squelette_cache); - if ((filemtime("$squelette.html") < $t) AND (filemtime("inc-calcul-squel.php3") < $t)) { + if ((filemtime("$squelette.html") < $t) + AND (filemtime("inc-calcul-squel.php3") < $t) + AND (filemtime("mes_fonctions.php3") < $t)) { $use_cache = true; } } -- GitLab