Make WordPress Core


Ignore:
Timestamp:
04/10/2023 12:54:28 PM (17 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict comparison where count() is involved.

Follow-up to [1636], [6974], [8114], [10322], [13326], [14760], [18006], [18541], [19743], [23249], [24115], [33359].

Props aristath, poena, afercia, SergeyBiryukov.
See #57839.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r55641 r55642  
    47554755    $wpsmiliestrans = apply_filters( 'smilies', $wpsmiliestrans );
    47564756
    4757     if ( count( $wpsmiliestrans ) == 0 ) {
     4757    if ( count( $wpsmiliestrans ) === 0 ) {
    47584758        return;
    47594759    }
Note: See TracChangeset for help on using the changeset viewer.