summaryrefslogtreecommitdiffstats
path: root/wp-inst
diff options
context:
space:
mode:
authormatt <matt@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-05-15 12:26:45 +0000
committermatt <matt@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-05-15 12:26:45 +0000
commit73b22f6881812329d280273dbd15e7215a44624f (patch)
tree2a4e0f2e4444a326bab08698c98536de04e27f5d /wp-inst
parent034694eb53dd71a980745f5594509890fd761998 (diff)
downloadwordpress-mu-73b22f6881812329d280273dbd15e7215a44624f.tar.gz
wordpress-mu-73b22f6881812329d280273dbd15e7215a44624f.tar.xz
wordpress-mu-73b22f6881812329d280273dbd15e7215a44624f.zip
Activation link fixed
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@544 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst')
-rw-r--r--wp-inst/wp-includes/wpmu-functions.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/wp-inst/wp-includes/wpmu-functions.php b/wp-inst/wp-includes/wpmu-functions.php
index e708d65..3d8baba 100644
--- a/wp-inst/wp-includes/wpmu-functions.php
+++ b/wp-inst/wp-includes/wpmu-functions.php
@@ -997,8 +997,8 @@ function wpmu_signup($domain, $path, $title, $user, $user_email, $meta = '') {
function wpmu_signup_notification($domain, $path, $title, $user, $user_email, $key, $meta = '') {
// Send email with activation link.
$message_headers = 'From: ' . stripslashes($title) . ' <support@' . $_SERVER[ 'SERVER_NAME' ] . '>';
- $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\n\nAnd you can login on the home page:\n\nhttp://wordpress.com/"),
- "http://wordpress.com/activate/$key", "http://$domain");
+ $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"),
+ "http://wordpress.com/wp-activate.php?key=$key", "http://$domain");
// TODO: Don't hard code activation link.
$subject = sprintf(__('Activate %s'), $domain);
wp_mail($user_email, $subject, $message, $message_headers);