fix interpolation for positional arguments in showstream

This commit is contained in:
Evan Prodromou 2010-01-24 22:50:07 -05:00
parent 536170d788
commit e400437d57

View File

@ -76,7 +76,7 @@ class ShowstreamAction extends ProfileAction
if ($this->page == 1) { if ($this->page == 1) {
return $base; return $base;
} else { } else {
return sprintf(_("%1$s, page %2$d"), return sprintf(_('%1$s, page %2$d'),
$base, $base,
$this->page); $this->page);
} }