]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/subscribe.php
utility for getting avatar or default avatar
[quix0rs-gnu-social.git] / actions / subscribe.php
index 4a17e302f431300005a39066ebc8d621a191cf5b..6499705ec8c674fdb67bfea6c6a9e765c076ae9a 100644 (file)
@@ -83,10 +83,13 @@ class SubscribeAction extends Action {
                        $headers['To'] = $name . ' <' . $listenee->email . '>';
                        $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);
-
+                       $body  = sprintf(_('%1$s is now listening to your notices on %2$s.'."\n\n".
+                                                          "\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);
                }
        }