Only show number of attachments if > 1

This commit is contained in:
Robin Millette 2009-05-24 18:06:19 -04:00
parent 8c2473a227
commit bd70caace8
1 changed files with 6 additions and 9 deletions

View File

@ -207,14 +207,12 @@ class NoticeListItem extends Widget
return 'shownotice' !== $this->out->args['action'];
}
function attachmentCount() {
$f2p = new File_to_post;
$f2p->post_id = $this->notice->id;
$file = new File;
$file->joinAdd($f2p);
$file->selectAdd();
$file->selectAdd('file.id as id');
return $file->find(true);
function attachmentCount($discriminant = true) {
$file_oembed = new File_oembed;
$query = "select count(*) as c from file_oembed join file_to_post on file_oembed.file_id = file_to_post.file_id where post_id=" . $this->notice->id;
$file_oembed->query($query);
$file_oembed->fetch();
return intval($file_oembed->c);
}
function showNoticeAttachmentsIcon()
@ -224,7 +222,6 @@ class NoticeListItem extends Widget
}
$href = common_local_url('shownotice', array('notice' => $this->notice->id)) . '#attachments';
$this->out->elementStart('p', 'entry-attachments');
$this->out->element('a', array('href' => $href, 'title' => "# of attachments: $count"), $count === 1 ? '' : $count);
$this->out->elementEnd('p');