mirror of
git://develop.git.wordpress.org/
synced 2025-03-19 11:29:48 +01:00
Coding Standards: Use strict comparison in wp-admin/options-reading.php
.
Follow-up to [16816]. See #53359. git-svn-id: https://develop.svn.wordpress.org/trunk@52428 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
19ce57fc10
commit
f7929047a3
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user