Coding Standards: Use strict comparison in `wp-admin/options-writing.php`.
Follow-up to [4326], [19304]. Props aristath, poena, afercia, SergeyBiryukov. See #57839. Built from https://develop.svn.wordpress.org/trunk@55904 git-svn-id: http://core.svn.wordpress.org/trunk@55416 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
116d5d03c3
commit
39c2cef0c9
|
@ -206,7 +206,7 @@ if ( apply_filters( 'enable_update_services_configuration', true ) ) {
|
|||
?>
|
||||
<h2 class="title"><?php _e( 'Update Services' ); ?></h2>
|
||||
|
||||
<?php if ( 1 == get_option( 'blog_public' ) ) : ?>
|
||||
<?php if ( '1' === get_option( 'blog_public' ) ) : ?>
|
||||
|
||||
<p><label for="ping_sites">
|
||||
<?php
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.3-alpha-55903';
|
||||
$wp_version = '6.3-alpha-55904';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue