From: Evan Prodromou Date: Mon, 25 Jan 2010 03:57:33 +0000 (-0500) Subject: fix interpolation of positional arguments to sprintf in show group X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a9da43a41644b3e1ff27e8250fd858d2c2840e7b;p=quix0rs-gnu-social.git fix interpolation of positional arguments to sprintf in show group --- diff --git a/actions/showgroup.php b/actions/showgroup.php index 06ae572e81..8042a49513 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -79,9 +79,9 @@ class ShowgroupAction extends GroupDesignAction } if ($this->page == 1) { - return sprintf(_("%s group"), $base); + return sprintf(_('%s group'), $base); } else { - return sprintf(_("%1$s group, page %2$d"), + return sprintf(_('%1$s group, page %2$d'), $base, $this->page); }