summaryrefslogtreecommitdiffstats
path: root/wp-inst
diff options
context:
space:
mode:
authormatt <matt@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-05-15 12:35:09 +0000
committermatt <matt@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-05-15 12:35:09 +0000
commitd599986b4231f112ce41a490e762e2281fa82068 (patch)
treed94a926d8fa43380160773ce485c31ba5b005e69 /wp-inst
parent100f13ff47105a78e0b6b5aee57aa1978b44e080 (diff)
downloadwordpress-mu-d599986b4231f112ce41a490e762e2281fa82068.tar.gz
wordpress-mu-d599986b4231f112ce41a490e762e2281fa82068.tar.xz
wordpress-mu-d599986b4231f112ce41a490e762e2281fa82068.zip
Take out wp.com hardcoding
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@547 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst')
-rw-r--r--wp-inst/wp-includes/wpmu-functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-inst/wp-includes/wpmu-functions.php b/wp-inst/wp-includes/wpmu-functions.php
index 723aea9..00725fe 100644
--- a/wp-inst/wp-includes/wpmu-functions.php
+++ b/wp-inst/wp-includes/wpmu-functions.php
@@ -998,7 +998,7 @@ function wpmu_signup_notification($domain, $path, $title, $user, $user_email, $k
// 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"),
- "http://wordpress.com/wp-activate.php?key=$key", "http://$domain");
+ "http://$domain/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);