diff --git a/wp-includes/version.php b/wp-includes/version.php index 7fa2d62418..62ce39a19d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43027'; +$wp_version = '5.0-alpha-43030'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-signup.php b/wp-signup.php index 92b6a21b4a..7ff5ebc8d4 100644 --- a/wp-signup.php +++ b/wp-signup.php @@ -7,6 +7,8 @@ add_action( 'wp_head', 'wp_no_robots' ); require( dirname( __FILE__ ) . '/wp-blog-header.php' ); +nocache_headers(); + if ( is_array( get_site_option( 'illegal_names' ) ) && isset( $_GET['new'] ) && in_array( $_GET['new'], get_site_option( 'illegal_names' ) ) ) { wp_redirect( network_home_url() ); die();