From c9c8c9ffdc837b7245f8fa5d25b0f99c1ecbf454 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Mon, 26 Sep 2011 00:10:34 +0200 Subject: [PATCH] Remove punctuation in e-mail subject. Spotted by OsamaK. --- lib/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mail.php b/lib/mail.php index c93464a586..17a58de469 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -831,7 +831,7 @@ function mail_notify_group_join($group, $joiner) // TRANS: Subject of group join notification e-mail. // TRANS: %1$s is the joining user's nickname, %2$s is the group name, and %3$s is the StatusNet sitename. $headers['Subject'] = sprintf(_('%1$s has joined '. - 'your group %2$s on %3$s.'), + 'your group %2$s on %3$s'), $joiner->getBestName(), $group->getBestName(), common_config('site', 'name'));