summaryrefslogtreecommitdiffstats
path: root/wp-includes
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-30 16:48:23 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-10-30 16:48:23 +0000
commit9817ff2d282c68faaa09232845829b96f207e72b (patch)
tree3f50a721d9dfcfd958b587fcbd5d9436ff090558 /wp-includes
parenta6f0d9894b9d750dd26b9ce35351c605c0916d39 (diff)
downloadwordpress-mu-9817ff2d282c68faaa09232845829b96f207e72b.tar.gz
wordpress-mu-9817ff2d282c68faaa09232845829b96f207e72b.tar.xz
wordpress-mu-9817ff2d282c68faaa09232845829b96f207e72b.zip
Minor text changes
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1138 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes')
-rw-r--r--wp-includes/wpmu-functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-includes/wpmu-functions.php b/wp-includes/wpmu-functions.php
index 1ed2b18..eab496d 100644
--- a/wp-includes/wpmu-functions.php
+++ b/wp-includes/wpmu-functions.php
@@ -1065,7 +1065,7 @@ function wpmu_signup_blog_notification($domain, $path, $title, $user, $user_emai
$message_headers = "MIME-Version: 1.0\n" . "From: \"{$from_name}\" <{$admin_email}>\n" . "Content-Type: text/plain; charset=\"" . get_option('blog_charset') . "\"\n";
$message = sprintf(__("To activate your blog, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login.\n\nAfter you activate, you can visit your blog here:\n\n%s"), $activate_url, "http://{$domain}{$path}");
// TODO: Don't hard code activation link.
- $subject = sprintf(__('Activate %s'), $domain.$path);
+ $subject = '[' . $from_name . '] ' . sprintf(__('Activate %s'), 'http://' . $domain . $path);
wp_mail($user_email, $subject, $message, $message_headers);
}