Administration: Invalid argument passed in additional_classes.
Fix `additional_classes` argument passed as a string instead of an array. Follow up to [56409]. Props joedolson. See #57791. Built from https://develop.svn.wordpress.org/trunk@56410 git-svn-id: http://core.svn.wordpress.org/trunk@55922 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
82417a694f
commit
3e1db7f59d
|
@ -445,7 +445,7 @@ function network_step2( $errors = false ) {
|
|||
$notice_message = '<strong>' . __( 'Caution:' ) . '</strong> ';
|
||||
$notice_args = array(
|
||||
'type' => 'warning',
|
||||
'additional_classes' => 'inline',
|
||||
'additional_classes' => array( 'inline' ),
|
||||
);
|
||||
|
||||
if ( file_exists( $home_path . '.htaccess' ) ) {
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.4-alpha-56409';
|
||||
$wp_version = '6.4-alpha-56410';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue