Multisite: Fix copy/paste issue in `id` attribute for a dismissible message on Sites screen.
Props imath. Fixes #37764. Built from https://develop.svn.wordpress.org/trunk@38305 git-svn-id: http://core.svn.wordpress.org/trunk@38246 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
cd6d2bae92
commit
26d7a5607b
|
@ -273,7 +273,7 @@ if ( isset( $_GET['updated'] ) ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( ! empty( $msg ) )
|
if ( ! empty( $msg ) )
|
||||||
$msg = '<div class="updated" id="message notice is-dismissible"><p>' . $msg . '</p></div>';
|
$msg = '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$wp_list_table->prepare_items();
|
$wp_list_table->prepare_items();
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.7-alpha-38304';
|
$wp_version = '4.7-alpha-38305';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue