From 54f62fc23475c24f44291420da944b2d8117bd74 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 10 Sep 2020 14:19:35 +0000 Subject: [PATCH] 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 --- src/wp-admin/includes/class-wp-ms-themes-list-table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/class-wp-ms-themes-list-table.php b/src/wp-admin/includes/class-wp-ms-themes-list-table.php index 7f751a3b2f..de1b741234 100644 --- a/src/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/src/wp-admin/includes/class-wp-ms-themes-list-table.php @@ -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; }