Coding Standards: Use strict comparison in wp-admin/includes/class-wp-ms-themes-list-table.php.

See #50767.

git-svn-id: https://develop.svn.wordpress.org/trunk@48967 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2020-09-10 14:19:35 +00:00
parent db9a91a2a8
commit 54f62fc234

View File

@ -301,7 +301,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
$a = $theme_a[ $orderby ];
$b = $theme_b[ $orderby ];
if ( $a == $b ) {
if ( $a === $b ) {
return 0;
}