]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
reformat mail again
authorEvan Prodromou <evan@prodromou.name>
Sat, 12 Jul 2008 20:49:23 +0000 (16:49 -0400)
committerEvan Prodromou <evan@prodromou.name>
Sat, 12 Jul 2008 20:49:23 +0000 (16:49 -0400)
darcs-hash:20080712204923-84dde-627704bb3a0bb95af3b8fa9ba281a38913e0bbcf.gz

actions/subscribe.php

index 4a17e302f431300005a39066ebc8d621a191cf5b..2bcb00f2c90297f17131ff99a00168c15cd74d50 100644 (file)
@@ -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);
                }
        }