From 036cd3a4106cf2eee0be72f0695458dfb517976b Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sun, 25 Dec 2011 00:17:22 +0400 Subject: globalUpdateFeeds: disable debugging info --- include/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/functions.php') diff --git a/include/functions.php b/include/functions.php index 679e0b215..e561d8e3d 100644 --- a/include/functions.php +++ b/include/functions.php @@ -2633,14 +2633,14 @@ * @param integer $limit The maximum number of articles by digest. * @return boolean Return false if digests are not enabled. */ - function send_headlines_digests($link, $limit = 100) { + function send_headlines_digests($link, $limit = 100, $debug = true) { require_once 'lib/phpmailer/class.phpmailer.php'; $user_limit = 15; // amount of users to process (e.g. emails to send out) $days = 1; - print "Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit\n\n"; + if ($debug) _debug("Sending digests, batch of max $user_limit users, days = $days, headline limit = $limit"); if (DB_TYPE == "pgsql") { $interval_query = "last_digest_sent < NOW() - INTERVAL '$days days'"; @@ -2709,7 +2709,7 @@ } } - print "All done.\n"; + if ($debug) _debug("All done."); } -- cgit v1.2.3