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:
joedolson 2023-08-17 21:36:21 +00:00
parent 82417a694f
commit 3e1db7f59d
2 changed files with 2 additions and 2 deletions

View File

@ -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' ) ) {

View File

@ -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.