Skip to content

Commit

Permalink
Coding Standards: Use strict comparison in `wp-admin/options-reading.…
Browse files Browse the repository at this point in the history
…php`.

Follow-up to [16816].

See #53359.

git-svn-id: https://develop.svn.wordpress.org/trunk@52428 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
SergeyBiryukov committed Jan 2, 2022
1 parent 19ce57f commit f792904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wp-admin/options-reading.php
Expand Up @@ -73,7 +73,7 @@
<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;

Expand Down

0 comments on commit f792904

Please sign in to comment.