]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/tag.php
Updated Cloudy theme default avatars and minor CSS
[quix0rs-gnu-social.git] / actions / tag.php
index cb6572b9627c398baf8429e9ff3e89062e5b5f3f..02f3e35225cca6976fc7efe5a8b0930b346664eb 100644 (file)
@@ -77,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);
@@ -93,4 +104,9 @@ class TagAction extends Action
         $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
                           $this->page, 'tag', array('tag' => $this->tag));
     }
+
+    function isReadOnly($args)
+    {
+        return true;
+    }
 }