From 1b9b19af0fe6e98f71993c177cba4a7e9e268e8b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Tue, 31 Jan 2012 15:52:33 +0400 Subject: try to send digests within 2 hours of preferred time only --- include/functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/functions.php b/include/functions.php index 9eb66de3e..0ef1d013f 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2706,7 +2706,9 @@ if (get_pref($link, 'DIGEST_ENABLE', $line['id'], false)) { $preferred_ts = strtotime(get_pref($link, 'DIGEST_PREFERRED_TIME', $line['id'], '00:00')); - if ($preferred_ts && time() >= $preferred_ts) { + // try to send digests within 2 hours of preferred time + if ($preferred_ts && time() >= $preferred_ts && + time() - $preferred_ts <= 7200) { if ($debug) print "Sending digest for UID:" . $line['id'] . " - " . $line["email"] . " ... "; -- cgit v1.2.3