From 7f2ee7952b665c0384bc0390167a3a30d6fb3599 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 26 Oct 2005 02:30:05 +0100 Subject: [PATCH] MIN_UPDATE_INTERVAL -> DEFAULT_UPDATE_INTERVAL --- config.php-dist | 4 ++-- functions.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config.php-dist b/config.php-dist index 2da53f43..6fc6af7f 100644 --- a/config.php-dist +++ b/config.php-dist @@ -30,8 +30,8 @@ // crafted SQL queries. This feature is highly experimental and // at this point not user friendly. Use with caution. - define(MIN_UPDATE_INTERVAL, 30); - // min. interval between feed updates, minutes + define(DEFAULT_UPDATE_INTERVAL, 30); + // default interval between feed updates, minutes define(DISPLAY_HEADER, true); // enable/disable the display of the header graphic diff --git a/functions.php b/functions.php index 2176b8b7..f8fb75a5 100644 --- a/functions.php +++ b/functions.php @@ -31,7 +31,7 @@ while ($line = db_fetch_assoc($result)) { $upd_intl = $line["update_interval"]; - if (!$upd_intl) $upd_intl = MIN_UPDATE_INTERVAL; + if (!$upd_intl || $upd_intl == 0) $upd_intl = DEFAULT_UPDATE_INTERVAL; if (!$line["last_updated"] || time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) { -- 2.39.2