Skip to content

Commit

Permalink
Coding Standards: Correct alignment in wp-admin/user-edit.php.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
SergeyBiryukov committed Oct 7, 2023
1 parent 36d4e7e commit f0b32cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wp-admin/user-edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -832,7 +832,7 @@
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' ),
)
);
Expand Down

0 comments on commit f0b32cc

Please sign in to comment.