diff options
author | Evan Prodromou <evan@status.net> | 2010-01-24 22:53:29 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-24 22:53:29 -0500 |
commit | 02526f1100621aa522ccb6beccc0a4e507da328a (patch) | |
tree | 2c41a19e2c0efebfa594f8efc0bbd2cacf837886 | |
parent | fc7afed92478117d009d835a4d1cd0565ada1089 (diff) |
fix interpolation of positional arguments to sprintf in outbox
-rw-r--r-- | actions/outbox.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/outbox.php b/actions/outbox.php index de30de018..b81d4b9d0 100644 --- a/actions/outbox.php +++ b/actions/outbox.php @@ -55,10 +55,10 @@ class OutboxAction extends MailboxAction function title() { if ($this->page > 1) { - return sprintf(_("Outbox for %1$s - page %2$d"), + return sprintf(_('Outbox for %1$s - page %2$d'), $this->user->nickname, $page); } else { - return sprintf(_("Outbox for %s"), $this->user->nickname); + return sprintf(_('Outbox for %s'), $this->user->nickname); } } |