From: Alexandre Alapetite Date: Wed, 12 Apr 2017 12:17:16 +0000 (+0200) Subject: Fix missing SQL group by in ping X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c3e933642e6ad761c91888006b45efa69915d691;p=friendica.git Fix missing SQL group by in ping https://github.com/friendica/friendica/issues/3322 --- diff --git a/mod/ping.php b/mod/ping.php index b5330c7b33..0b82e71d39 100644 --- a/mod/ping.php +++ b/mod/ping.php @@ -201,6 +201,7 @@ function ping_init(App $a) if (is_null($ev)) { $ev = qu("SELECT count(`event`.`id`) AS total, type, start, adjust FROM `event` WHERE `event`.`uid` = %d AND `start` < '%s' AND `finish` > '%s' and `ignore` = 0 + GROUP BY type, start, adjust ORDER BY `start` ASC ", intval(local_user()), dbesc(datetime_convert('UTC', 'UTC', 'now + 7 days')),