diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-09-16 16:09:42 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-09-16 16:09:42 -0400 |
commit | 92d6ae6fae1415958f04718d66632b7128e1cd86 (patch) | |
tree | be44a95fb5baf327a90ef10ae3ba3b68581c3bce /actions | |
parent | 827fdc63a0a2c4160a4cffaacecbc52074cd3813 (diff) |
correct title on inbox and outbox
darcs-hash:20080916200942-84dde-257499b7cbc4553d3f4cf5c0eafc891b860a53b8.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/inbox.php | 1 | ||||
-rw-r--r-- | actions/outbox.php | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/actions/inbox.php b/actions/inbox.php index 6e38c8064..c752e404e 100644 --- a/actions/inbox.php +++ b/actions/inbox.php @@ -29,6 +29,7 @@ class InboxAction extends MailboxAction { } else { $title = sprintf(_("Inbox for %s"), $user->nickname); } + return $title; } function get_messages($user, $page) { diff --git a/actions/outbox.php b/actions/outbox.php index 5fdd43ddc..c48d9c206 100644 --- a/actions/outbox.php +++ b/actions/outbox.php @@ -29,6 +29,7 @@ class OutboxAction extends MailboxAction { } else { $title = sprintf(_("Outbox for %s"), $user->nickname); } + return $title; } function get_messages($user, $page) { |