From: Brenda Wallace Date: Thu, 25 Jun 2009 10:35:41 +0000 (+1200) Subject: added missing conversation column to group by X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bd9824c8d563bbd2d9f9ed259341f0e2fc1ffdf1;p=quix0rs-gnu-social.git added missing conversation column to group by --- diff --git a/actions/favorited.php b/actions/favorited.php index c902d80f53..156c7a7009 100644 --- a/actions/favorited.php +++ b/actions/favorited.php @@ -194,7 +194,7 @@ class FavoritedAction extends Action $qry = 'SELECT notice.*, '. $weightexpr . ' as weight ' . 'FROM notice JOIN fave ON notice.id = fave.notice_id ' . - 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source ' . + 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . 'ORDER BY weight DESC'; $offset = ($this->page - 1) * NOTICES_PER_PAGE;