diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-15 10:25:26 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-15 10:25:26 -0400 |
commit | 5ff8d8d447f306f4ad654d56b47cc6f740321c38 (patch) | |
tree | 113c2546f5fab3687f8101fb33a8a25b5880114d /actions/showstream.php | |
parent | 8da76e0810342a90ac006f67cfd73500972f883a (diff) | |
parent | 8439477201cd59a6c0dba84ddf48eb86a6154199 (diff) |
Merge branch '0.7.x' of git@gitorious.org:laconica/dev into 0.7.x
Conflicts:
actions/public.php
Diffstat (limited to 'actions/showstream.php')
-rw-r--r-- | actions/showstream.php | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/actions/showstream.php b/actions/showstream.php index c1a2c337a..82665e5b8 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -135,6 +135,17 @@ class ShowstreamAction extends ProfileAction sprintf(_('FOAF for %s'), $this->user->nickname))); } + /** + * Output document relationship links + * + * @return void + */ + function showRelationshipLinks() + { + $this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME + $this->page, 'showstream', array('nickname' => $this->user->nickname)); + } + function extraHead() { // for remote subscriptions etc. |