summaryrefslogtreecommitdiff
path: root/actions/all.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@status.net>2010-01-13 23:17:37 -0800
committerEvan Prodromou <evan@status.net>2010-01-13 23:17:37 -0800
commit30e50439a32eaf7b68897c5b141c955f6906ad79 (patch)
tree954777689161c852b4d8b3e8c308ba7ad31aec9d /actions/all.php
parent16742d0fde811256c386d1bae9768fcd939b9af8 (diff)
change double quotes to single quotes in numbered format string
Diffstat (limited to 'actions/all.php')
-rw-r--r--actions/all.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/all.php b/actions/all.php
index efa4521e2..3eb185214 100644
--- a/actions/all.php
+++ b/actions/all.php
@@ -81,7 +81,7 @@ class AllAction extends ProfileAction
function title()
{
if ($this->page > 1) {
- return sprintf(_("%1$s and friends, page %2$d"), $this->user->nickname, $this->page);
+ return sprintf(_('%1$s and friends, page %2$d'), $this->user->nickname, $this->page);
} else {
return sprintf(_("%s and friends"), $this->user->nickname);
}