diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-10 22:47:40 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-10 22:47:40 -0400 |
commit | 925ac16e1f878b44940b1a2970b91bcf9c09e314 (patch) | |
tree | 9a79609ec98303f06b9bfae694d6b1ae4504a24a /actions | |
parent | fba02499327aa18083b590cf38ee6e144be06a6f (diff) |
tag stream is read-only
Diffstat (limited to 'actions')
-rw-r--r-- | actions/tag.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/actions/tag.php b/actions/tag.php index d15f64498..c413bf8c3 100644 --- a/actions/tag.php +++ b/actions/tag.php @@ -86,4 +86,9 @@ class TagAction extends Action $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE, $this->page, 'tag', array('tag' => $this->tag)); } + + function isReadOnly() + { + return true; + } } |