Skip to content

Commit

Permalink
Coding Standards: Use strict comparison in `wp-admin/plugin-install.p…
Browse files Browse the repository at this point in the history
…hp`.

Follow-up to [11366].

See #54728.

git-svn-id: https://develop.svn.wordpress.org/trunk@52534 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Jan 6, 2022
1 parent 6223e0c commit b9bb489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wp-admin/plugin-install.php
Expand Up @@ -52,7 +52,7 @@
$parent_file = 'plugins.php';

wp_enqueue_script( 'plugin-install' );
if ( 'plugin-information' != $tab ) {
if ( 'plugin-information' !== $tab ) {
add_thickbox();
}

Expand Down

0 comments on commit b9bb489

Please sign in to comment.