X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/6c8f14c09105d0afa4c1574215c59b5021040e76..16e7b37c7914d753890c1a05a9335f3b43751eb8:/wp-activate.php diff --git a/wp-activate.php b/wp-activate.php index 0d5f1dca..b13279af 100644 --- a/wp-activate.php +++ b/wp-activate.php @@ -1,36 +1,52 @@ cache_enabled = false; +// Fix for page title +$wp_query->is_404 = false; + +/** + * Fires before the Site Activation page is loaded. + * + * @since 3.0.0 + */ do_action( 'activate_header' ); /** - * Adds an action hook specific to this page that fires on wp_head + * Adds an action hook specific to this page. + * + * Fires on {@see 'wp_head'}. * * @since MU */ function do_activate_header() { - do_action( 'activate_wp_head' ); + /** + * Fires before the Site Activation page is loaded. + * + * Fires on the {@see 'wp_head'} action. + * + * @since 3.0.0 + */ + do_action( 'activate_wp_head' ); } add_action( 'wp_head', 'do_activate_header' ); @@ -46,16 +62,17 @@ function wpmu_activate_stylesheet() { #submit, #key { width: 90%; font-size: 24px; } #language { margin-top: .5em; } .error { background: #f66; } - span.h3 { padding: 0 8px; font-size: 1.3em; font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif; font-weight: bold; color: #333; } + span.h3 { padding: 0 8px; font-size: 1.3em; font-weight: bold; } -
+
+

@@ -72,49 +89,74 @@ get_header(); get_error_code() || 'blog_taken' == $result->get_error_code() ) { - $signup = $result->get_error_data(); + $signup = $result->get_error_data(); ?>

'; if ( $signup->domain . $signup->path == '' ) { - printf( __('Your account has been activated. You may now log in 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 reset your password.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() ); + printf( + /* translators: 1: login URL, 2: username, 3: user email, 4: lost password URL */ + __( 'Your account has been activated. You may now log in 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 reset your password.' ), + network_site_url( 'wp-login.php', 'login' ), + $signup->user_login, + $signup->user_email, + wp_lostpassword_url() + ); } else { - printf( __('Your site at %2$s is active. You may now log in to your site 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 reset your password.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() ); + printf( + /* translators: 1: site URL, 2: site domain, 3: username, 4: user email, 5: lost password URL */ + __( 'Your site at %2$s is active. You may now log in to your site 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 reset your password.' ), + 'http://' . $signup->domain, + $signup->domain, + $signup->user_login, + $signup->user_email, + wp_lostpassword_url() + ); } echo '

'; } else { ?> -

+

+

get_error_message(); ?>

'.$result->get_error_message().'

'; } } else { - extract($result); - $url = get_blogaddress_by_id( (int) $blog_id); - $user = get_userdata( (int) $user_id); + $url = isset( $result['blog_id'] ) ? get_home_url( (int) $result['blog_id'] ) : ''; + $user = get_userdata( (int) $result['user_id'] ); ?>

user_login ?>

-

+

- -

View your site or Log in'), $url, $url . 'wp-login.php' ); ?>

+ +

View your site or Log in' ), $url, esc_url( $login_url ) ); + ?>

-

Log in or go back to the homepage.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?>

+

Log in or go back to the homepage.' ), network_site_url( 'wp-login.php', 'login' ), network_home_url() ); + ?>

+
- \ No newline at end of file +