diff options
author | Evan Prodromou <evan@status.net> | 2010-01-24 22:56:41 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-01-24 22:56:41 -0500 |
commit | 019dad95e12191632a3828fb0950a80f305bbf01 (patch) | |
tree | bc3069a81f724f4ce89dfb7834b5e7354e75f9c9 | |
parent | 73fdec6c12c308732f0673f2d10ab1542c927a33 (diff) |
fix interpolation of positional arguments to sprintf in show favorites
-rw-r--r-- | actions/showfavorites.php | 4 |
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); } |