Another GROUP BY fix for MySQL
https://github.com/friendica/friendica/issues/3322
This commit is contained in:
parent
dbbe6efd27
commit
15a44d945b
|
@ -724,7 +724,7 @@ class ostatus {
|
|||
} else {
|
||||
$conversations = q("SELECT `oid`, `url`, `uid` FROM `term`
|
||||
WHERE `type` = 7 AND `term` > '%s'
|
||||
GROUP BY `url`, `uid` ORDER BY `term` DESC", dbesc($start));
|
||||
GROUP BY `url`, `uid`, `oid`, `term` ORDER BY `term` DESC", dbesc($start));
|
||||
}
|
||||
|
||||
foreach ($conversations AS $conversation) {
|
||||
|
|
Loading…
Reference in a new issue