From 7dada5df2fce9343ce259bc840cb83c7b9cf05dc Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 10 Sep 2020 14:21:09 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp-admin/includes/class-wp-ms-themes-list-table.php`. See #50767. Built from https://develop.svn.wordpress.org/trunk@48967 git-svn-id: http://core.svn.wordpress.org/trunk@48729 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-ms-themes-list-table.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-themes-list-table.php b/wp-admin/includes/class-wp-ms-themes-list-table.php index 7f751a3b2f..de1b741234 100644 --- a/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/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; } diff --git a/wp-includes/version.php b/wp-includes/version.php index b860d70d94..b45b5167c0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.6-alpha-48966'; +$wp_version = '5.6-alpha-48967'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.