diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-06-10 09:09:57 -0700 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-06-10 09:09:57 -0700 |
commit | c0853e304051a3b8ceacb95d6977ca62df5e25a6 (patch) | |
tree | bc6b296a422950bc4ae76a20a42f62b751e4ab14 /actions/inbox.php | |
parent | ed627bb4bd6424325478412055d295b185f9f662 (diff) | |
parent | 1a077b0a7fa699302d7ff2ff59feb118d5653c15 (diff) |
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'actions/inbox.php')
-rw-r--r-- | actions/inbox.php | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/actions/inbox.php b/actions/inbox.php index 7b5cf2d20..f14ba631f 100644 --- a/actions/inbox.php +++ b/actions/inbox.php @@ -46,15 +46,15 @@ require_once INSTALLDIR.'/lib/mailbox.php'; class InboxAction extends MailboxAction { - + /** * Title of the page * * @return string page title */ - + function title() - { + { if ($this->page > 1) { return sprintf(_("Inbox for %s - page %d"), $this->user->nickname, $this->page); @@ -64,21 +64,10 @@ class InboxAction extends MailboxAction } /** - * Output document relationship links - * - * @return void - */ - function showRelationshipLinks() - { - $this->sequenceRelationships($this->page > 1, $this->count > NOTICES_PER_PAGE, // FIXME - $this->page, 'inbox', array('nickname' => $this->user->nickname)); - } - - /** * Retrieve the messages for this user and this page * * Does a query for the right messages - * + * * @return Message data object with stream for messages * * @see MailboxAction::getMessages() @@ -95,7 +84,7 @@ class InboxAction extends MailboxAction if ($message->find()) { return $message; - } else { + } else { return null; } } |