]> git.wh0rd.org Git - tt-rss.git/commitdiff
MIN_UPDATE_INTERVAL -> DEFAULT_UPDATE_INTERVAL
authorAndrew Dolgov <fox@bah.spb.su>
Wed, 26 Oct 2005 01:30:05 +0000 (02:30 +0100)
committerAndrew Dolgov <fox@bah.spb.su>
Wed, 26 Oct 2005 01:30:05 +0000 (02:30 +0100)
config.php-dist
functions.php

index 2da53f433e38682343aebda6b66f8d7c14edee7b..6fc6af7fd86e596bea9aadc7d2a9562a5c1cfe4f 100644 (file)
@@ -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
index 2176b8b7731e8243c9debc6e81f7c89f7077fb3c..f8fb75a5cb20d0cba5b2979c10faa59dfc41fa73 100644 (file)
@@ -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)) {