From 550e37d59df7c830756d7810e002907b13ddb169 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 20 Apr 2006 06:16:41 +0100 Subject: [PATCH] fix typo, run witn E_ALL error level --- update_daemon.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/update_daemon.php b/update_daemon.php index 8c36fda68..d61ed69f1 100644 --- a/update_daemon.php +++ b/update_daemon.php @@ -3,6 +3,8 @@ // this daemon runs in the background and updates all feeds // continuously + define('DEFAULT_ERROR_LEVEL', E_ALL); + declare(ticks = 1); define('MAGPIE_CACHE_DIR', '/var/tmp/magpie-ttrss-cache-daemon'); @@ -101,7 +103,7 @@ print "Feed: " . $line["feed_url"] . ": "; printf("(%d/%d, %d) ", time() - strtotime($line["last_updated"]), - $upd_intl*60, $owner_uid); + $upd_intl*60, $user_id); if (!$line["last_updated"] || time() - strtotime($line["last_updated"]) > ($upd_intl * 60)) {