From d40409cddd4377b146ac998a631cd903d1d0392f Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Mon, 30 Jan 2023 19:09:50 +0100 Subject: make sure that randomexpire = 1.0 always clears cache --- it_url.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_url.class b/it_url.class index a0671fb..e2cd993 100644 --- a/it_url.class +++ b/it_url.class @@ -742,7 +742,7 @@ static function _expired($path, $maxage, $randomexpire = 0) { if ($result = EDC('nocache') ? false : @filemtime($path)) { - if (time() - $result > $maxage || mt_rand(0, 100000) < $randomexpire * 100000) + if (time() - $result > $maxage || rand(0, 100000) <= $randomexpire * 100000) EDC('getcache', "expired", $maxage, $path); else $result = false; -- cgit v1.2.3