Make WordPress Core

Ticket #46834: 46834.diff

File 46834.diff, 1.0 KB (added by subrataemfluence, 6 years ago)
  • options-reading.php

    diff --git a/options-reading.php b/options-reading.php
    index 7131e29..98dab54 100755
    a b if ( ! in_array( get_option( 'blog_charset' ), array( 'utf8', 'utf-8', 'UTF8', ' 
    6868        endif;
    6969
    7070else :
    71         if ( 'page' == get_option( 'show_on_front' ) && ! get_option( 'page_on_front' ) && ! get_option( 'page_for_posts' ) ) {
     71        if ( 'page' === get_option( 'show_on_front' ) && ! get_option( 'page_on_front' ) && ! get_option( 'page_for_posts' ) ) {
    7272                update_option( 'show_on_front', 'posts' );
    7373        }
    7474        ?>
    else : 
    120120        ?>
    121121</label></li>
    122122</ul>
    123         <?php if ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_for_posts' ) == get_option( 'page_on_front' ) ) : ?>
     123        <?php if ( 'page' === get_option( 'show_on_front' ) && get_option( 'page_for_posts' ) === get_option( 'page_on_front' ) ) : ?>
    124124<div id="front-page-warning" class="error inline"><p><?php _e( '<strong>Warning:</strong> these pages should not be the same!' ); ?></p></div>
    125125<?php endif; ?>
    126126</fieldset></td>