]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/inbox.php
Twitter-compatible API - properly encode and decode UTF-8 HTML entities
[quix0rs-gnu-social.git] / actions / inbox.php
index 73155efd7a77f5c26a64f303888e37e15d705b8a..c752e404e9dc258b1a313274eaf46331c27d1489 100644 (file)
@@ -29,6 +29,7 @@ class InboxAction extends MailboxAction {
                } else {
                        $title = sprintf(_("Inbox for %s"), $user->nickname);
                }
+               return $title;
        }
        
        function get_messages($user, $page) {
@@ -47,4 +48,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.');
+       }
 }