From: Evan Prodromou Date: Mon, 25 Jan 2010 03:55:29 +0000 (-0500) Subject: fix interpolation of positional arguments to sprintf in usergroups X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=73fdec6c12c308732f0673f2d10ab1542c927a33;p=quix0rs-gnu-social.git fix interpolation of positional arguments to sprintf in usergroups --- diff --git a/actions/usergroups.php b/actions/usergroups.php index 5042261432..97faabae65 100644 --- a/actions/usergroups.php +++ b/actions/usergroups.php @@ -59,9 +59,9 @@ class UsergroupsAction extends OwnerDesignAction function title() { if ($this->page == 1) { - return sprintf(_("%s groups"), $this->user->nickname); + return sprintf(_('%s groups'), $this->user->nickname); } else { - return sprintf(_("%1$s groups, page %2$d"), + return sprintf(_('%1$s groups, page %2$d'), $this->user->nickname, $this->page); }