From: Andrew Dolgov Date: Mon, 16 Jul 2007 13:10:32 +0000 (+0100) Subject: daemon: properly limit check on stampfile X-Git-Tag: 1.2.13~7 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=784b47a3a32b8a3a4d47ec99526adb5c6b7d2a46;p=tt-rss.git daemon: properly limit check on stampfile --- diff --git a/functions.php b/functions.php index 6376a282..9f7f39d2 100644 --- a/functions.php +++ b/functions.php @@ -2331,7 +2331,7 @@ print ""; - if ($_SESSION["daemon_stamp_check"] + 0 < time()) { + if ($_SESSION["daemon_stamp_check"] + 600 < time()) { $stamp = (int)read_stampfile("update_daemon.stamp");