mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Coding Standards: Use strict comparison where static strings are involved.
This reduces the number of `WordPress.PHP.StrictComparisons.LooseComparison` issues in half, from 1897 to 890. Includes minor code layout fixes for better readability. See #49542. git-svn-id: https://develop.svn.wordpress.org/trunk@47808 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -524,7 +524,7 @@ final class _WP_Editors {
|
||||
$strings .= @file_get_contents( $path . $mce_locale . '_dlg.js' ) . "\n";
|
||||
}
|
||||
|
||||
if ( 'en' != $mce_locale && empty( $strings ) ) {
|
||||
if ( 'en' !== $mce_locale && empty( $strings ) ) {
|
||||
if ( @is_file( $path . 'en.js' ) ) {
|
||||
$str1 = @file_get_contents( $path . 'en.js' );
|
||||
$strings .= preg_replace( '/([\'"])en\./', '$1' . $mce_locale . '.', $str1, 1 ) . "\n";
|
||||
@@ -834,8 +834,8 @@ final class _WP_Editors {
|
||||
$options .= $key . ':' . $val . ',';
|
||||
continue;
|
||||
} elseif ( ! empty( $value ) && is_string( $value ) && (
|
||||
( '{' == $value[0] && '}' == $value[ strlen( $value ) - 1 ] ) ||
|
||||
( '[' == $value[0] && ']' == $value[ strlen( $value ) - 1 ] ) ||
|
||||
( '{' === $value[0] && '}' === $value[ strlen( $value ) - 1 ] ) ||
|
||||
( '[' === $value[0] && ']' === $value[ strlen( $value ) - 1 ] ) ||
|
||||
preg_match( '/^\(?function ?\(/', $value ) ) ) {
|
||||
|
||||
$options .= $key . ':' . $value . ',';
|
||||
@@ -1776,7 +1776,7 @@ final class _WP_Editors {
|
||||
// Build results.
|
||||
$results = array();
|
||||
foreach ( $posts as $post ) {
|
||||
if ( 'post' == $post->post_type ) {
|
||||
if ( 'post' === $post->post_type ) {
|
||||
$info = mysql2date( __( 'Y/m/d' ), $post->post_date );
|
||||
} else {
|
||||
$info = $pts[ $post->post_type ]->labels->singular_name;
|
||||
|
||||
Reference in New Issue
Block a user