TwentyFifteen|Sixteen themes have a `<div id="content">` in the header. Change the `<div>` IDs in `wp-activate.php` and `wp-signup.php` to be unique to each page.
Props jfarthing84. Fixes #33843. Built from https://develop.svn.wordpress.org/trunk@34162 git-svn-id: http://core.svn.wordpress.org/trunk@34130 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
69e3a390b2
commit
d7d5789088
|
@ -67,7 +67,7 @@ add_action( 'wp_head', 'wpmu_activate_stylesheet' );
|
|||
get_header();
|
||||
?>
|
||||
|
||||
<div id="content" class="widecolumn">
|
||||
<div id="signup-content" class="widecolumn">
|
||||
<?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?>
|
||||
|
||||
<h2><?php _e('Activation Key Required') ?></h2>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34161';
|
||||
$wp_version = '4.4-alpha-34162';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
|
@ -75,7 +75,7 @@ get_header();
|
|||
*/
|
||||
do_action( 'before_signup_form' );
|
||||
?>
|
||||
<div id="content" class="widecolumn">
|
||||
<div id="signup-content" class="widecolumn">
|
||||
<div class="mu_register">
|
||||
<?php
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue