Make WordPress Core


Ignore:
Timestamp:
04/10/2023 12:54:28 PM (3 years 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/post.php

    r55617 r55642  
    57335733            }
    57345734
    5735             if ( 0 == $p->post_parent && count( $revparts ) == $count + 1 && $p->post_name == $revparts[ $count ] ) {
     5735            if ( 0 == $p->post_parent && count( $revparts ) === $count + 1 && $p->post_name == $revparts[ $count ] ) {
    57365736                $foundid = $page->ID;
    57375737                if ( $page->post_type == $post_type ) {
Note: See TracChangeset for help on using the changeset viewer.