summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-11-24 13:08:01 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2008-11-24 13:08:01 +0000
commit3a5eefe78060c39d6f9a633703feb8d4378a41fd (patch)
treee19fe32479ef531af6c388d6cdc08ba7ce8079f5
parent9af9e26bcd2ffe9a5b7a1d25247b91d508cca934 (diff)
downloadwordpress-mu-3a5eefe78060c39d6f9a633703feb8d4378a41fd.tar.gz
wordpress-mu-3a5eefe78060c39d6f9a633703feb8d4378a41fd.tar.xz
wordpress-mu-3a5eefe78060c39d6f9a633703feb8d4378a41fd.zip
Tiny typo
git-svn-id: http://svn.automattic.com/wordpress-mu/branches/2.6@1540 7be80a69-a1ef-0310-a953-fb0f7c49ff36
-rw-r--r--wp-signup.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/wp-signup.php b/wp-signup.php
index 0a7965a..28e7d6b 100644
--- a/wp-signup.php
+++ b/wp-signup.php
@@ -14,7 +14,10 @@ if( is_array( get_site_option( 'illegal_names' )) && $_GET[ 'new' ] != '' && in_
die();
}
-do_action("signup_header");
+function do_signup_header() {
+ do_action("signup_header");
+}
+add_action( 'wp_head', 'do_signup_header' );
function signuppageheaders() {
echo "<meta name='robots' content='noindex,nofollow' />\n";
@@ -356,7 +359,7 @@ function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user
<p>
<?php _e("If you haven't received your email yet, there are a number of things you can do:") ?>
<ul>
- <li><p><strong><?php _e('Wait a little longer. Sometimes delivery of email can be delayed by precesses outside of our control.') ?></strong></p></li>
+ <li><p><strong><?php _e('Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control.') ?></strong></p></li>
<li><p><?php _e('Check the junk email or spam folder of your email client. Sometime emails wind up there by mistake.') ?></p></li>
<li><?php printf(__("Have you entered your email correctly? We think it's %s but if you've entered it incorrectly, you won't receive it."), $user_email) ?></li>
</ul>