]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
fix interpolation of positional arguments to sprintf in inbox
authorEvan Prodromou <evan@status.net>
Mon, 25 Jan 2010 03:54:25 +0000 (22:54 -0500)
committerEvan Prodromou <evan@status.net>
Mon, 25 Jan 2010 03:54:25 +0000 (22:54 -0500)
actions/inbox.php

index f605cc9e8b3edf6d246c0febc68f716bf3e49384..8330f753ff1dd4161830656171b9373be10312d1 100644 (file)
@@ -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);
         }
     }