From 9899cfb5c75b6855e158d855ca0dba1344ca6262 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 11 Aug 2012 19:40:21 -0700 Subject: fix events ping notification backend --- mod/ping.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mod') diff --git a/mod/ping.php b/mod/ping.php index d37824645..59a56d919 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -155,7 +155,7 @@ function ping_init(&$a) { $t5 = dba_timer(); - $events = q("SELECT count(`event`.`id`) as total, start, convert FROM `event` + $events = q("SELECT count(`event`.`id`) as total, start, adjust FROM `event` WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' ORDER BY `start` ASC ", intval(local_user()), @@ -169,7 +169,7 @@ function ping_init(&$a) { if($result['events']) { $str_now = datetime_convert('UTC',$a->timezone,'now','Y-m-d'); foreach($events as $x) { - if(datetime_convert('UTC',((intval($x['convert'])) ? $a->timezone : 'UTC'), $x['start'],'Y-m-d') === $str_now) + if(datetime_convert('UTC',((intval($x['adjust'])) ? $a->timezone : 'UTC'), $x['start'],'Y-m-d') === $str_now) $result['events_today'] ++; } } -- cgit v1.2.3