summaryrefslogtreecommitdiff
path: root/actions/showstream.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-24 22:50:07 -0500
committerEvan Prodromou <evan@status.net>2010-01-24 22:50:07 -0500
commite400437d5783a5a1a03feb3ea3e5b6a40a71ed60 (patch)
tree7288233a07fe18ee110979d5619048a1c85f607f /actions/showstream.php
parent536170d7884a58d279a01e5ed5fbc267840a17ba (diff)
fix interpolation for positional arguments in showstream
Diffstat (limited to 'actions/showstream.php')
-rw-r--r--actions/showstream.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/showstream.php b/actions/showstream.php
index 75e10858d..90ff67073 100644
--- a/actions/showstream.php
+++ b/actions/showstream.php
@@ -76,7 +76,7 @@ class ShowstreamAction extends ProfileAction
if ($this->page == 1) {
return $base;
} else {
- return sprintf(_("%1$s, page %2$d"),
+ return sprintf(_('%1$s, page %2$d'),
$base,
$this->page);
}