From 30e50439a32eaf7b68897c5b141c955f6906ad79 Mon Sep 17 00:00:00 2001
From: Evan Prodromou <evan@status.net>
Date: Wed, 13 Jan 2010 23:17:37 -0800
Subject: [PATCH] change double quotes to single quotes in numbered format
 string

---
 actions/all.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/actions/all.php b/actions/all.php
index efa4521e21..3eb1852147 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);
         }
-- 
2.39.5