summaryrefslogtreecommitdiffstats
path: root/wp-activate.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-03-28 13:25:24 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-03-28 13:25:24 +0000
commit71cabcdb878969fc09a5c541a3c888e30be59e23 (patch)
tree8eb30be8308572de004ff27f93e44882edf254ac /wp-activate.php
parent3a11a6842e91ba65e15116bd5aeb964b4b227f64 (diff)
downloadwordpress-mu-71cabcdb878969fc09a5c541a3c888e30be59e23.tar.gz
wordpress-mu-71cabcdb878969fc09a5c541a3c888e30be59e23.tar.xz
wordpress-mu-71cabcdb878969fc09a5c541a3c888e30be59e23.zip
Typo
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@942 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-activate.php')
-rw-r--r--wp-activate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/wp-activate.php b/wp-activate.php
index 93671ff..3819af6 100644
--- a/wp-activate.php
+++ b/wp-activate.php
@@ -50,7 +50,7 @@ if ( empty($_GET['key']) && empty($_POST['key']) ) {
$signup = $result->get_error_data();
_e( '<h2>Your account is now active!</h2>' );
if( $signup->domain . $signup->path == '' ) {
- printf(__('<p class="lead-in">Your account has been activaed. You may now <a href="%1$s">login</a> to the site using your chosen username of "%2$s". Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.</p>'), 'http://' . $current_site->domain . $current_site->path . 'wp-login.php', $signup->user_login, $signup->user_email, 'http://' . $current_site->domain . $current_site->path . 'wp-login.php?action=lostpassword');
+ printf(__('<p class="lead-in">Your account has been activated. You may now <a href="%1$s">login</a> to the site using your chosen username of "%2$s". Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.</p>'), 'http://' . $current_site->domain . $current_site->path . 'wp-login.php', $signup->user_login, $signup->user_email, 'http://' . $current_site->domain . $current_site->path . 'wp-login.php?action=lostpassword');
} else {
printf(__('<p class="lead-in">Your blog at <a href="%1$s">%2$s</a> is active. You may now login to your blog using your chosen username of "%3$s". Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.</p>'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, 'http://' . $current_site->domain . $current_site->path . 'wp-login.php?action=lostpassword');
}