diff options
Diffstat (limited to 'actions/public.php')
-rw-r--r-- | actions/public.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/actions/public.php b/actions/public.php index 5a380de9a..d2f9da646 100644 --- a/actions/public.php +++ b/actions/public.php @@ -56,7 +56,7 @@ class PublicAction extends Action var $page = null; - function isReadOnly() + function isReadOnly($args) { return true; } @@ -136,6 +136,17 @@ class PublicAction extends Action } /** + * Output document relationship links + * + * @return void + */ + function showRelationshipLinks() + { + $this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME + $this->page, 'public'); + } + + /** * Extra head elements * * We include a <meta> element linking to the publicxrds page, for OpenID |