]> git.mxchange.org Git - friendica.git/commitdiff
Fix missing SQL group by in ping
authorAlexandre Alapetite <alexandre@alapetite.fr>
Wed, 12 Apr 2017 12:17:16 +0000 (14:17 +0200)
committerAlexandre Alapetite <alexandre@alapetite.fr>
Wed, 12 Apr 2017 12:17:16 +0000 (14:17 +0200)
https://github.com/friendica/friendica/issues/3322

mod/ping.php

index b5330c7b330bcfebdf64c51446432ebfb1baf8b5..0b82e71d392e3eb083cd3bdfb2af9578118954e0 100644 (file)
@@ -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')),