summaryrefslogtreecommitdiff
path: root/classes/Subscription.php
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-10-04 14:24:04 -0700
committerBrion Vibber <brion@pobox.com>2010-10-04 14:24:04 -0700
commitd6b3d7fb1a7a3dca701dfe5cf95a832b3eb055f9 (patch)
tree13c9e4094618de5d5314f553c619806772ce68f5 /classes/Subscription.php
parent2295bbec9ea1e279316b8a45b6b05c6d71a6fc3d (diff)
Fix unescaped dollar signs in double-quoted strings due to localization updates (%1$s etc)
Diffstat (limited to 'classes/Subscription.php')
-rw-r--r--classes/Subscription.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/Subscription.php b/classes/Subscription.php
index b4dbd84c9..e9ad2a5a2 100644
--- a/classes/Subscription.php
+++ b/classes/Subscription.php
@@ -255,7 +255,7 @@ class Subscription extends Memcached_DataObject
$act->title = _("Follow");
// TRANS: Notification given when one person starts following another.
// TRANS: %1$s is the subscriber, %2$s is the subscribed.
- $act->content = sprintf(_("%1$s is now following %2$s."),
+ $act->content = sprintf(_('%1$s is now following %2$s.'),
$subscriber->getBestName(),
$subscribed->getBestName());