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:
Scott Taylor 2015-09-15 02:09:24 +00:00
parent 69e3a390b2
commit d7d5789088
3 changed files with 3 additions and 3 deletions

View File

@ -67,7 +67,7 @@ add_action( 'wp_head', 'wpmu_activate_stylesheet' );
get_header(); get_header();
?> ?>
<div id="content" class="widecolumn"> <div id="signup-content" class="widecolumn">
<?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?> <?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?>
<h2><?php _e('Activation Key Required') ?></h2> <h2><?php _e('Activation Key Required') ?></h2>

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

View File

@ -75,7 +75,7 @@ get_header();
*/ */
do_action( 'before_signup_form' ); do_action( 'before_signup_form' );
?> ?>
<div id="content" class="widecolumn"> <div id="signup-content" class="widecolumn">
<div class="mu_register"> <div class="mu_register">
<?php <?php
/** /**