Coding Standards: Use strict comparison in `wp-admin/options-reading.php`.

Follow-up to [16816].

See #53359.
Built from https://develop.svn.wordpress.org/trunk@52428


git-svn-id: http://core.svn.wordpress.org/trunk@52020 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2022-01-02 16:47:05 +00:00
parent 5abfff6c70
commit 54b155f4a5
2 changed files with 2 additions and 2 deletions

View File

@ -73,7 +73,7 @@ if ( ! in_array( get_option( 'blog_charset' ), array( 'utf8', 'utf-8', 'UTF8', '
<input name="show_on_front" type="hidden" value="posts" />
<table class="form-table" role="presentation">
<?php
if ( 'posts' != get_option( 'show_on_front' ) ) :
if ( 'posts' !== get_option( 'show_on_front' ) ) :
update_option( 'show_on_front', 'posts' );
endif;

View File

@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.9-beta4-52427';
$wp_version = '5.9-beta4-52428';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.