X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fattachmentnoticesection.php;h=7a22bd0e9d271cb626d26e3af734bebff3c1d941;hb=2d81df47604f01a19e649397e599b603d4a3f3f1;hp=578c171ff591bdba3e8bde5533a263ae90ce684a;hpb=a08c76a4342cfb4b3d772f6880ba0b8f3153b246;p=quix0rs-gnu-social.git diff --git a/lib/attachmentnoticesection.php b/lib/attachmentnoticesection.php index 578c171ff5..7a22bd0e9d 100644 --- a/lib/attachmentnoticesection.php +++ b/lib/attachmentnoticesection.php @@ -42,7 +42,6 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ - class AttachmentNoticeSection extends NoticeSection { function showContent() { @@ -53,23 +52,24 @@ 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(); - return $notice; + return $notice; } function title() { + // TRANS: Title. return _('Notices where this attachment appears'); } function divId() { - return 'popular_notices'; + return 'attachment_section'; } } -