X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Fping.php;h=b5330c7b330bcfebdf64c51446432ebfb1baf8b5;hb=8bdc906013461464b475c4f10918adff8730dea6;hp=8b2090cb69d340472c9bb854d807772df879f638;hpb=844fefc9c4eb67b1a161fb86c86edaffd5b18504;p=friendica.git diff --git a/mod/ping.php b/mod/ping.php index 8b2090cb69..b5330c7b33 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -196,7 +196,7 @@ function ping_init(App $a) } } - $cachekey = "ping:events:".local_user(); + $cachekey = "ping_init:".local_user(); $ev = Cache::get($cachekey); if (is_null($ev)) { $ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event` @@ -206,11 +206,12 @@ function ping_init(App $a) dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')), dbesc(datetime_convert('UTC', 'UTC', 'now')) ); + if (dbm::is_result($ev)) { + Cache::set($cachekey, $ev, CACHE_HOUR); + } } if (dbm::is_result($ev)) { - Cache::set($cachekey, $ev, CACHE_HOUR); - $all_events = intval($ev[0]['total']); if ($all_events) {