Make WordPress Core

Ticket #46846: 46846.diff

File 46846.diff, 6.0 KB (added by subrataemfluence, 5 years ago)
  • wp-includes/formatting.php

    diff --git wp-includes/formatting.php wp-includes/formatting.php
    index 835862c..47135c0 100755
    function antispambot( $email_address, $hex_encoding = 0 ) { 
    27522752        $email_no_spam_address = '';
    27532753        for ( $i = 0, $len = strlen( $email_address ); $i < $len; $i++ ) {
    27542754                $j = rand( 0, 1 + $hex_encoding );
    2755                 if ( $j == 0 ) {
     2755                if ( 0 === $j ) {
    27562756                        $email_no_spam_address .= '&#' . ord( $email_address[ $i ] ) . ';';
    2757                 } elseif ( $j == 1 ) {
     2757                } elseif ( 1 === $j ) {
    27582758                        $email_no_spam_address .= $email_address[ $i ];
    2759                 } elseif ( $j == 2 ) {
     2759                } elseif ( 2 === $j ) {
    27602760                        $email_no_spam_address .= '%' . zeroise( dechex( ord( $email_address[ $i ] ) ), 2 );
    27612761                }
    27622762        }
    function wp_remove_targeted_link_rel_filters() { 
    31613161function translate_smiley( $matches ) {
    31623162        global $wpsmiliestrans;
    31633163
    3164         if ( count( $matches ) == 0 ) {
     3164        if ( 0 === count( $matches ) ) {
    31653165                return '';
    31663166        }
    31673167
    function convert_smilies( $text ) { 
    32203220                        $content = $textarr[ $i ];
    32213221
    32223222                        // If we're in an ignore block, wait until we find its closing tag
    3223                         if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) {
     3223                        if ( '' === $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) {
    32243224                                $ignore_block_element = $matches[1];
    32253225                        }
    32263226
    32273227                        // If it's not a tag and not in ignore block
    3228                         if ( '' == $ignore_block_element && strlen( $content ) > 0 && '<' != $content[0] ) {
     3228                        if ( '' === $ignore_block_element && strlen( $content ) > 0 && '<' !== $content[0] ) {
    32293229                                $content = preg_replace_callback( $wp_smiliessearch, 'translate_smiley', $content );
    32303230                        }
    32313231
    32323232                        // did we exit ignore block
    3233                         if ( '' != $ignore_block_element && '</' . $ignore_block_element . '>' == $content ) {
     3233                        if ( '' !== $ignore_block_element && '</' . $ignore_block_element . '>' === $content ) {
    32343234                                $ignore_block_element = '';
    32353235                        }
    32363236
    function is_email( $email, $deprecated = false ) { 
    32783278        }
    32793279
    32803280        // Test for an @ character after the first position
    3281         if ( strpos( $email, '@', 1 ) === false ) {
     3281        if ( false === strpos( $email, '@', 1 ) ) {
    32823282                /** This filter is documented in wp-includes/formatting.php */
    32833283                return apply_filters( 'is_email', false, $email, 'email_no_at' );
    32843284        }
    function get_date_from_gmt( $string, $format = 'Y-m-d H:i:s' ) { 
    34463446 */
    34473447function iso8601_timezone_to_offset( $timezone ) {
    34483448        // $timezone is either 'Z' or '[+|-]hhmm'
    3449         if ( $timezone == 'Z' ) {
     3449        if ( 'Z' === $timezone ) {
    34503450                $offset = 0;
    34513451        } else {
    34523452                $sign    = ( substr( $timezone, 0, 1 ) == '+' ) ? 1 : -1;
    function iso8601_timezone_to_offset( $timezone ) { 
    34693469function iso8601_to_datetime( $date_string, $timezone = 'user' ) {
    34703470        $timezone = strtolower( $timezone );
    34713471
    3472         if ( $timezone == 'gmt' ) {
     3472        if ( 'gmt' === $timezone ) {
    34733473
    34743474                preg_match( '#([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(Z|[\+|\-][0-9]{2,4}){0,1}#', $date_string, $date_bits );
    34753475
    function iso8601_to_datetime( $date_string, $timezone = 'user' ) { 
    34843484
    34853485                return gmdate( 'Y-m-d H:i:s', $timestamp );
    34863486
    3487         } elseif ( $timezone == 'user' ) {
     3487        } elseif ( 'user' === $timezone ) {
    34883488                return preg_replace( '#([0-9]{4})([0-9]{2})([0-9]{2})T([0-9]{2}):([0-9]{2}):([0-9]{2})(Z|[\+|\-][0-9]{2,4}){0,1}#', '$1-$2-$3 $4:$5:$6', $date_string );
    34893489        }
    34903490}
    function human_time_diff( $from, $to = '' ) { 
    36843684 */
    36853685function wp_trim_excerpt( $text = '' ) {
    36863686        $raw_excerpt = $text;
    3687         if ( '' == $text ) {
     3687        if ( '' === $text ) {
    36883688                $text = get_the_content( '' );
    36893689
    36903690                $text = strip_shortcodes( $text );
    function esc_sql( $data ) { 
    41714171function esc_url( $url, $protocols = null, $_context = 'display' ) {
    41724172        $original_url = $url;
    41734173
    4174         if ( '' == $url ) {
     4174        if ( '' === $url ) {
    41754175                return $url;
    41764176        }
    41774177
    function esc_url( $url, $protocols = null, $_context = 'display' ) { 
    41984198        }
    41994199
    42004200        // Replace ampersands and single quotes only when displaying.
    4201         if ( 'display' == $_context ) {
     4201        if ( 'display' === $_context ) {
    42024202                $url = wp_kses_normalize_entities( $url );
    42034203                $url = str_replace( '&amp;', '&#038;', $url );
    42044204                $url = str_replace( "'", '&#039;', $url );
    function sanitize_option( $option, $value ) { 
    45074507                case 'default_ping_status':
    45084508                case 'default_comment_status':
    45094509                        // Options that if not there have 0 value but need to be something like "closed"
    4510                         if ( $value == '0' || $value == '' ) {
     4510                        if ( '0' === $value || '' === $value ) {
    45114511                                $value = 'closed';
    45124512                        }
    45134513                        break;
    function wp_sprintf_l( $pattern, $args ) { 
    49224922        while ( $i ) {
    49234923                $arg = array_shift( $args );
    49244924                $i--;
    4925                 if ( 0 == $i ) {
     4925                if ( 0 === $i ) {
    49264926                        $result .= $l['between_last_two'] . $arg;
    49274927                } else {
    49284928                        $result .= $l['between'] . $arg;
    function wp_staticize_emoji( $text ) { 
    56185618                $content = $textarr[ $i ];
    56195619
    56205620                // If we're in an ignore block, wait until we find its closing tag.
    5621                 if ( '' == $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) {
     5621                if ( '' === $ignore_block_element && preg_match( '/^<(' . $tags_to_ignore . ')>/', $content, $matches ) ) {
    56225622                        $ignore_block_element = $matches[1];
    56235623                }
    56245624
    56255625                // If it's not a tag and not in ignore block.
    5626                 if ( '' == $ignore_block_element && strlen( $content ) > 0 && '<' != $content[0] && false !== strpos( $content, '&#x' ) ) {
     5626                if ( '' === $ignore_block_element && strlen( $content ) > 0 && '<' != $content[0] && false !== strpos( $content, '&#x' ) ) {
    56275627                        foreach ( $possible_emoji as $emojum => $emoji_char ) {
    56285628                                if ( false === strpos( $content, $emojum ) ) {
    56295629                                        continue;
    function wp_staticize_emoji( $text ) { 
    56395639                }
    56405640
    56415641                // Did we exit ignore block.
    5642                 if ( '' != $ignore_block_element && '</' . $ignore_block_element . '>' == $content ) {
     5642                if ( '' !== $ignore_block_element && '</' . $ignore_block_element . '>' == $content ) {
    56435643                        $ignore_block_element = '';
    56445644                }
    56455645