summaryrefslogtreecommitdiff
path: root/actions/replies.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/replies.php')
-rw-r--r--actions/replies.php22
1 files changed, 22 insertions, 0 deletions
diff --git a/actions/replies.php b/actions/replies.php
index 7eff74a66..5ae99e165 100644
--- a/actions/replies.php
+++ b/actions/replies.php
@@ -142,6 +142,28 @@ class RepliesAction extends Action
}
/**
+ * Output document relationship links
+ *
+ * @return void
+ */
+ function showRelationshipLinks()
+ {
+ // Machine-readable pagination
+ if ($this->page > 1) {
+ $this->element('link', array('rel' => 'next',
+ 'href' => common_local_url('replies',
+ array('nickname' => $this->user->nickname,
+ 'page' => $this->page - 1)),
+ 'title' => _('Next Notices')));
+ }
+ $this->element('link', array('rel' => 'prev',
+ 'href' => common_local_url('replies',
+ array('nickname' => $this->user->nickname,
+ 'page' => $this->page + 1)),
+ 'title' => _('Previous Notices')));
+ }
+
+ /**
* show the personal group nav
*
* @return void