From f0b32ccf634f8b8ba3393cbb4cefe6acb5ee2fb9 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 7 Oct 2023 13:53:10 +0000 Subject: [PATCH] Coding Standards: Correct alignment in `wp-admin/user-edit.php`. This resolves a WPCS warning: {{{ Array double arrow not aligned correctly; expected 1 space(s) between "'type'" and double arrow, but found 15. }}} Follow-up to [56570], [56680]. Props jrf. See #59161, #58831. git-svn-id: https://develop.svn.wordpress.org/trunk@56798 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/user-edit.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/user-edit.php b/src/wp-admin/user-edit.php index 04bf5ac512..bbb321a272 100644 --- a/src/wp-admin/user-edit.php +++ b/src/wp-admin/user-edit.php @@ -832,7 +832,7 @@ switch ( $action ) { wp_admin_notice( __( 'Your website appears to use Basic Authentication, which is not currently compatible with Application Passwords.' ), array( - 'type' => 'error', + 'type' => 'error', 'additional_classes' => array( 'inline' ), ) );