summaryrefslogtreecommitdiff
path: root/actions/showfavorites.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-24 22:56:41 -0500
committerEvan Prodromou <evan@status.net>2010-01-24 22:56:41 -0500
commit019dad95e12191632a3828fb0950a80f305bbf01 (patch)
treebc3069a81f724f4ce89dfb7834b5e7354e75f9c9 /actions/showfavorites.php
parent73fdec6c12c308732f0673f2d10ab1542c927a33 (diff)
fix interpolation of positional arguments to sprintf in show favorites
Diffstat (limited to 'actions/showfavorites.php')
-rw-r--r--actions/showfavorites.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showfavorites.php b/actions/showfavorites.php
index 6023f0156..f2d082293 100644
--- a/actions/showfavorites.php
+++ b/actions/showfavorites.php
@@ -74,9 +74,9 @@ class ShowfavoritesAction extends OwnerDesignAction
function title()
{
if ($this->page == 1) {
- return sprintf(_("%s's favorite notices"), $this->user->nickname);
+ return sprintf(_('%s\'s favorite notices'), $this->user->nickname);
} else {
- return sprintf(_("%1$s's favorite notices, page %2$d"),
+ return sprintf(_('%1$s\'s favorite notices, page %2$d'),
$this->user->nickname,
$this->page);
}