X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Ftag.php;h=01b87509e5b022942dcc1a2b7334cf94773e4c27;hb=793a6a1155996a7bcdc068fc891e7063934bdb19;hp=d15f64498dc0c76e2fd1f5c47f20889c7e82ec37;hpb=5067939e9abaa7451faa26a7246460214aafb320;p=quix0rs-gnu-social.git diff --git a/actions/tag.php b/actions/tag.php index d15f64498d..01b87509e5 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -1,7 +1,7 @@ show(); + } + function title() { if ($this->page == 1) { @@ -70,11 +76,6 @@ class TagAction extends Action sprintf(_('Feed for tag %s'), $this->tag))); } - function showPageNotice() - { - return sprintf(_('Messages tagged "%s", most recent first'), $this->tag); - } - function showContent() { $notice = Notice_tag::getStream($this->tag, (($this->page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); @@ -86,4 +87,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; + } }