diff options
author | CiaranG <ciaran@ciarang.com> | 2009-07-07 20:53:28 +0100 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2009-07-07 20:53:28 +0100 |
commit | d846c5fc9927b93e59192e19fd59a8d350b0e3c9 (patch) | |
tree | 9573945b65a6be50ef6e726034e3e40b49cd8985 | |
parent | bb1548451ae39cda7a4c6212bee204a9d38e6ba7 (diff) | |
parent | bd9824c8d563bbd2d9f9ed259341f0e2fc1ffdf1 (diff) |
Merge commit 'br3nda/0.8.x-noticesfix' into 0.8.x
-rw-r--r-- | actions/favorited.php | 2 | ||||
-rw-r--r-- | lib/popularnoticesection.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/actions/favorited.php b/actions/favorited.php index c902d80f5..156c7a700 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; diff --git a/lib/popularnoticesection.php b/lib/popularnoticesection.php index 375d5538b..e47c9b385 100644 --- a/lib/popularnoticesection.php +++ b/lib/popularnoticesection.php @@ -68,7 +68,7 @@ class PopularNoticeSection extends NoticeSection } $qry .= ' GROUP BY notice.id,notice.profile_id,notice.content,notice.uri,' . 'notice.rendered,notice.url,notice.created,notice.modified,' . - 'notice.reply_to,notice.is_local,notice.source ' . + 'notice.reply_to,notice.is_local,notice.source,notice.conversation ' . 'ORDER BY weight DESC'; $offset = 0; |