diff options
author | Evan Prodromou <evan@status.net> | 2010-01-24 22:54:25 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-24 22:54:25 -0500 |
commit | 9077db00a50a6123ece70eb690b658c19c5aeb27 (patch) | |
tree | e8aa6478ac2e59fc6ba1444b3ac420ed9c61857b /actions | |
parent | 02526f1100621aa522ccb6beccc0a4e507da328a (diff) |
fix interpolation of positional arguments to sprintf in inbox
Diffstat (limited to 'actions')
-rw-r--r-- | actions/inbox.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/inbox.php b/actions/inbox.php index f605cc9e8..8330f753f 100644 --- a/actions/inbox.php +++ b/actions/inbox.php @@ -56,10 +56,10 @@ class InboxAction extends MailboxAction function title() { if ($this->page > 1) { - return sprintf(_("Inbox for %1$s - page %2$d"), $this->user->nickname, + return sprintf(_('Inbox for %1$s - page %2$d'), $this->user->nickname, $this->page); } else { - return sprintf(_("Inbox for %s"), $this->user->nickname); + return sprintf(_('Inbox for %s'), $this->user->nickname); } } |