From 035d9ed800d353d37ac2f0b6fdccf625ba2ceba9 Mon Sep 17 00:00:00 2001 From: Andreas Baumann Date: Fri, 11 Sep 2020 07:26:20 +0200 Subject: mirrorlist.php: using a comong cutoff for mirrors --- mirrorlist.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'mirrorlist.php') diff --git a/mirrorlist.php b/mirrorlist.php index 56bebea..459468e 100644 --- a/mirrorlist.php +++ b/mirrorlist.php @@ -4,9 +4,12 @@ require_once "init.php"; include BASE . "/lib/mysql.php"; include BASE . "/lib/style.php"; +# as in mirrors.php +$cutoff = 3600; + $filter = '`mirror_statuses`.`active`' . - ' AND `mirror_statuses`.`last_sync`>UNIX_TIMESTAMP(NOW())-7*24*60*60'; + " AND `mirror_statuses`.`last_sync`>UNIX_TIMESTAMP(NOW())-$cutoff"; $result = mysql_run_query( 'SELECT DISTINCT ' . -- cgit v1.2.3