summaryrefslogtreecommitdiff
path: root/actions/tag.php
diff options
context:
space:
mode:
authorZach Copley <zach@controlyourself.ca>2008-11-20 02:19:30 -0500
committerZach Copley <zach@controlyourself.ca>2008-11-20 02:19:30 -0500
commit727c4060a590d12595a0378e5d83b57423d920f5 (patch)
tree6d7373a5d9b7aa1a2f4f5af63ec2e69b38bab6f9 /actions/tag.php
parent0c935b4ace3c1690b8e93022ec633f42aae92c27 (diff)
New public tabs - Public, Recent tags, Featured, and Favorited
darcs-hash:20081120071930-7b5ce-a15d7308bde085f03aa335c98ecd0aaa3833bc35.gz
Diffstat (limited to 'actions/tag.php')
-rw-r--r--actions/tag.php14
1 files changed, 1 insertions, 13 deletions
diff --git a/actions/tag.php b/actions/tag.php
index dab462eae..553810ccc 100644
--- a/actions/tag.php
+++ b/actions/tag.php
@@ -69,19 +69,7 @@ class TagAction extends StreamAction {
common_element_end('div');
}
- common_element_start('ul', array('id' => 'nav_views'));
-
- common_menu_item(common_local_url('tags'),
- _('Recent Tags'),
- _('Recent Tags'),
- !$tag);
- if ($tag) {
- common_menu_item(common_local_url('tag', array('tag' => $tag)),
- '#' . $tag,
- sprintf(_("Notices tagged with %s"), $tag),
- true);
- }
- common_element_end('ul');
+ $this->public_views_menu();
}
function show_tags()