diff options
author | Zach Copley <zach@controlyourself.ca> | 2009-02-06 21:17:45 -0800 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-02-09 12:45:23 -0500 |
commit | 3e005f2d1bf01c295c132b6ca52e1139ef60b733 (patch) | |
tree | 89dfba1aac579f49dd4fe4fdf664df8d2128ccd2 | |
parent | 09d8a73eceba11ed021a697b3b8e283c5bc2dc6a (diff) |
"Change your email address..." msg was printing out \n instead of a newline
-rw-r--r-- | lib/mail.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mail.php b/lib/mail.php index b424d579f..a1faefc80 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -246,7 +246,7 @@ function mail_subscribe_notify_profile($listenee, $other) "\n".'Faithfully yours,'."\n".'%7$s.'."\n\n". "----\n". "Change your email address or ". - "notification options at ".'%8$s\n'), + "notification options at ".'%8$s' ."\n"), $long_name, common_config('site', 'name'), $other->profileurl, |