From 968156d9eef2e9ee958468892011bb0a2fbff1ca Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 11 Apr 2023 16:30:22 +0000 Subject: [PATCH] Coding Standards: Use strict comparison in `wp-admin/maint/repair.php`. Follow-up to [12092], [19757]. Props azouamauriac, aristath, poena, afercia, SergeyBiryukov. See #57839. Built from https://develop.svn.wordpress.org/trunk@55645 git-svn-id: http://core.svn.wordpress.org/trunk@55157 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/maint/repair.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/maint/repair.php b/wp-admin/maint/repair.php index 1821334e38..554e466d76 100644 --- a/wp-admin/maint/repair.php +++ b/wp-admin/maint/repair.php @@ -91,7 +91,7 @@ if ( ! defined( 'WP_ALLOW_REPAIR' ) || ! WP_ALLOW_REPAIR ) { __( 'Database repair results' ) . ''; - $optimize = 2 == $_GET['repair']; + $optimize = '2' === $_GET['repair']; $okay = true; $problems = array(); diff --git a/wp-includes/version.php b/wp-includes/version.php index 78b208d042..5763aed6bb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.3-alpha-55644'; +$wp_version = '6.3-alpha-55645'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.