mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-29 12:37:57 +01:00
Login and Registration: Send nocache_headers()
on Multisite signup pages.
Props herregroen. Merges [43030] to the 4.9 branch. Fixes #43843. Built from https://develop.svn.wordpress.org/branches/4.9@43031 git-svn-id: http://core.svn.wordpress.org/branches/4.9@42860 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e40df25f76
commit
57e36f1ed2
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9.6-alpha-43029';
|
||||
$wp_version = '4.9.6-alpha-43031';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user