From: Evan Prodromou Date: Tue, 16 Sep 2008 20:07:03 +0000 (-0400) Subject: instructions for inbox and outbox X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=827fdc63a0a2c4160a4cffaacecbc52074cd3813;p=quix0rs-gnu-social.git instructions for inbox and outbox darcs-hash:20080916200703-84dde-4984552dfc6865f6660d45670af6e3dc56395ff5.gz --- diff --git a/actions/inbox.php b/actions/inbox.php index 73155efd7a..6e38c80643 100644 --- a/actions/inbox.php +++ b/actions/inbox.php @@ -47,4 +47,8 @@ class InboxAction extends MailboxAction { function get_message_profile($message) { return $message->getFrom(); } + + function get_instructions() { + return _('This is your inbox, which lists your incoming private messages.'); + } } diff --git a/actions/outbox.php b/actions/outbox.php index b09cd20327..5fdd43ddc0 100644 --- a/actions/outbox.php +++ b/actions/outbox.php @@ -47,4 +47,9 @@ class OutboxAction extends MailboxAction { function get_message_profile($message) { return $message->getTo(); } + + function get_instructions() { + return _('This is your outbox, which lists private messages you have sent.'); + } + }