diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-07-12 16:49:23 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-07-12 16:49:23 -0400 |
commit | 96b2ef7dd9e0c7fec69c5b0457078f95268f3d59 (patch) | |
tree | 043ec9c47eaa968b99ad86e5d836d60e2116bd5e | |
parent | 839222dcc8b9f0ecd83f2f5d9bef3bcd77d44113 (diff) |
reformat mail again
darcs-hash:20080712204923-84dde-627704bb3a0bb95af3b8fa9ba281a38913e0bbcf.gz
-rw-r--r-- | actions/subscribe.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/actions/subscribe.php b/actions/subscribe.php index 4a17e302f..2bcb00f2c 100644 --- a/actions/subscribe.php +++ b/actions/subscribe.php @@ -84,9 +84,12 @@ class SubscribeAction extends Action { $headers['Subject'] = sprintf(_('%1$s is now listening to your notices on %2$s.'), $other->getBestName(), common_config('site', 'name')); $body = sprintf(_("%1$s is now listening to your notices on %2$s.\n\n". - "\t3$s\n\n". - "Faithfully yours,\n%2$s\n"), $long_name, common_config('site', 'name'), $other->profileurl); - + "\t%3$s\n\n". + "Faithfully yours,\n%4$s\n"), + $long_name, + common_config('site', 'name'), + $other->profileurl, + common_config('site', 'name')); mail_send($recipients, $headers, $body); } } |