]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/tag.php
Ticket #1196 - Fixed: Warning on invite tab in Facebook App
[quix0rs-gnu-social.git] / actions / tag.php
index 7f82c2a581e4456af92af23c777b7a58dc8d017e..02f3e35225cca6976fc7efe5a8b0930b346664eb 100644 (file)
@@ -45,6 +45,13 @@ class TagAction extends Action
         return true;
     }
 
+    function showSections()
+    {
+        $pop = new PopularNoticeSection($this);
+        $pop->show();
+    }
+
+
     function title()
     {
         if ($this->page == 1) {
@@ -70,6 +77,17 @@ class TagAction extends Action
                               sprintf(_('Feed for tag %s'), $this->tag)));
     }
 
+    /**
+     * Output document relationship links
+     *
+     * @return void
+     */
+    function showRelationshipLinks()
+    {
+        $this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME
+                                     $this->page, 'tag', array('tag' => $this->tag));
+    }
+
     function showPageNotice()
     {
         return sprintf(_('Messages tagged "%s", most recent first'), $this->tag);