From: Evan Prodromou Date: Mon, 25 Jan 2010 03:54:25 +0000 (-0500) Subject: fix interpolation of positional arguments to sprintf in inbox X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9077db00a50a6123ece70eb690b658c19c5aeb27;p=quix0rs-gnu-social.git fix interpolation of positional arguments to sprintf in inbox --- diff --git a/actions/inbox.php b/actions/inbox.php index f605cc9e8b..8330f753ff 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); } }