Remove punctuation in e-mail subject. Spotted by OsamaK.

This commit is contained in:
Siebrand Mazeland 2011-09-26 00:10:34 +02:00
parent e7dac240ef
commit c9c8c9ffdc
1 changed files with 1 additions and 1 deletions

View File

@ -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'));