summaryrefslogtreecommitdiff
path: root/actions/tag.php
diff options
context:
space:
mode:
authorRobin Millette <millette@controlyourself.ca>2009-05-17 22:06:08 -0400
committerRobin Millette <millette@controlyourself.ca>2009-05-17 22:06:08 -0400
commit5897dfa4c37d6a44bcde5dc7569c8b0d30f21b84 (patch)
tree6e882a25153ec071b4aa119bfdbd705ff51e2c90 /actions/tag.php
parenta325144fa0ba769de1cdb554cac04e0116912b66 (diff)
Refactored new sections code to proper classes and added notice link to links in notice sections.
Diffstat (limited to 'actions/tag.php')
-rw-r--r--actions/tag.php13
1 files changed, 2 insertions, 11 deletions
diff --git a/actions/tag.php b/actions/tag.php
index 2202f9bb0..47420e4c3 100644
--- a/actions/tag.php
+++ b/actions/tag.php
@@ -49,17 +49,8 @@ class TagAction extends Action
{
$pop = new PopularNoticeSection($this);
$pop->show();
-
- $notice_tag = new Notice_tag;
- $query = 'select file_id, count(file_id) as c from notice_tag join file_to_post on post_id = notice_id where tag="' . $notice_tag->escape($this->tag) . '" group by file_id order by c desc';
- $notice_tag->query($query);
- $this->elementStart('ol');
- while ($notice_tag->fetch()) {
- $this->elementStart('li');
- $this->element('a', array('class' => 'attachment', 'href' => common_local_url('attachment', array('attachment' => $notice_tag->file_id))), "Attachment tagged {$notice_tag->c} times");
- $this->elementEnd('li');
- }
- $this->elementEnd('ol');
+ $freqatt = new FrequentAttachmentSection($this);
+ $freqatt->show();
}
function title()