From: Evan Prodromou Date: Sat, 27 Aug 2011 13:38:46 +0000 (-0400) Subject: attachment notice section uses explicit joinAdd() X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=95abad5abbcf3a9ee1cd6040e1dadaef3e0d7cf0;p=quix0rs-gnu-social.git attachment notice section uses explicit joinAdd() --- diff --git a/lib/attachmentnoticesection.php b/lib/attachmentnoticesection.php index 25e64adf9e..b59568749c 100644 --- a/lib/attachmentnoticesection.php +++ b/lib/attachmentnoticesection.php @@ -52,9 +52,10 @@ class AttachmentNoticeSection extends NoticeSection function getNotices() { $notice = new Notice; - $f2p = new File_to_post; - $f2p->file_id = $this->out->attachment->id; - $notice->joinAdd($f2p); + + $notice->joinAdd(array('id', 'file_to_post:post_id')); + $notice->whereAdd(sprintf('file_to_post.file_id = %d', $this->out->attachment->id)); + $notice->orderBy('created desc'); $notice->selectAdd('post_id as id'); $notice->find();