Administration: Fix typos in wp_admin_notice() arguments in a few instances.

Follow-up to [56570], [56599].

Reviewed by azaozz, joedolson, jorbin.

Props dlh, mukesh27, sumitbagthariya16.
Fixes #59830.

Built from https://develop.svn.wordpress.org/branches/6.4@57087


git-svn-id: http://core.svn.wordpress.org/branches/6.4@56598 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Aaron Jorbin 2023-11-08 20:10:23 +00:00
parent 15fb84c071
commit fdc7706982
4 changed files with 7 additions and 7 deletions

View File

@ -1018,8 +1018,8 @@ function wp_import_upload_form( $action ) {
wp_admin_notice(
$upload_directory_error,
array(
'additonal_classes' => array( 'error' ),
'paragraph_wrap' => false,
'additional_classes' => array( 'error' ),
'paragraph_wrap' => false,
)
);
else :

View File

@ -345,9 +345,9 @@ function update_nag() {
wp_admin_notice(
$msg,
array(
'type' => 'warning',
'additonal_classes' => array( 'update-nag', 'inline' ),
'paragraph_wrap' => false,
'type' => 'warning',
'additional_classes' => array( 'update-nag', 'inline' ),
'paragraph_wrap' => false,
)
);
}

View File

@ -195,7 +195,7 @@ if ( isset( $_GET['a'] ) ) {
__( 'File edited successfully.' ),
array(
'id' => 'message',
'is-dismissible' => true,
'dismissible' => true,
'additional_classes' => array( 'updated' ),
)
);

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '6.4.1-alpha-57080';
$wp_version = '6.4.1-alpha-57087';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.