summaryrefslogtreecommitdiffstats
path: root/wp-includes
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-11-21 11:56:06 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-11-21 11:56:06 +0000
commitf43d738b39d2f3b22b90d3124d9a8e88d5b07388 (patch)
tree179ce57cbdfe2dd8fd3dea9b9b16810e0291ec67 /wp-includes
parent9a7fd4a29428ad574f3d8d48f61c6c1d8fa9ea30 (diff)
downloadwordpress-mu-f43d738b39d2f3b22b90d3124d9a8e88d5b07388.tar.gz
wordpress-mu-f43d738b39d2f3b22b90d3124d9a8e88d5b07388.tar.xz
wordpress-mu-f43d738b39d2f3b22b90d3124d9a8e88d5b07388.zip
Fixed activation error message, props jeffayars. Fixes #505
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1160 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 5e935f0..d116f0b 100644
--- a/wp-includes/wpmu-functions.php
+++ b/wp-includes/wpmu-functions.php
@@ -1134,7 +1134,7 @@ function wpmu_activate_signup($key) {
if ( 'blog_taken' == $blog_id->get_error_code() ) {
$blog_id->add_data($signup);
$wpdb->query("UPDATE $wpdb->signups SET active = '1', activated = '$now' WHERE activation_key = '$key'");
- error_log("Blog $blog_id failed to complete activation.", 0);
+ error_log("Blog {$signup->domain} failed to complete activation, the blog already exists.", 0);
}
return $blog_id;