diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-16 16:07:03 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-16 16:07:03 -0400 |
commit | 827fdc63a0a2c4160a4cffaacecbc52074cd3813 (patch) | |
tree | 5e827fa7e51fcaa436c68af597f91e2a042fb876 | |
parent | 56e9f7894d84d04f2c3ac8d4b6d8d6881bad832f (diff) |
instructions for inbox and outbox
darcs-hash:20080916200703-84dde-4984552dfc6865f6660d45670af6e3dc56395ff5.gz
-rw-r--r-- | actions/inbox.php | 4 | ||||
-rw-r--r-- | actions/outbox.php | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/actions/inbox.php b/actions/inbox.php index 73155efd7..6e38c8064 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 b09cd2032..5fdd43ddc 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.'); + } + } |