From: Siebrand Mazeland Date: Sun, 25 Sep 2011 22:10:34 +0000 (+0200) Subject: Remove punctuation in e-mail subject. Spotted by OsamaK. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c9c8c9ffdc837b7245f8fa5d25b0f99c1ecbf454;p=quix0rs-gnu-social.git Remove punctuation in e-mail subject. Spotted by OsamaK. --- 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'));