summaryrefslogtreecommitdiff
path: root/actions/showgroup.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-24 22:57:33 -0500
committerEvan Prodromou <evan@status.net>2010-01-24 22:57:33 -0500
commita9da43a41644b3e1ff27e8250fd858d2c2840e7b (patch)
tree349263523264932519a5ca9bd948258ff9866f0f /actions/showgroup.php
parent019dad95e12191632a3828fb0950a80f305bbf01 (diff)
fix interpolation of positional arguments to sprintf in show group
Diffstat (limited to 'actions/showgroup.php')
-rw-r--r--actions/showgroup.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showgroup.php b/actions/showgroup.php
index 06ae572e8..8042a4951 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);
}