Make WordPress Core


Ignore:
Timestamp:
04/09/2020 03:41:04 PM (4 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use strict type check for in_array() and array_search().

This addresses all the remaining WordPress.PHP.StrictInArray.MissingTrueStrict issues in core.

Includes minor code layout fixes for better readability.

Follow-up to [47550].

See #49542.

File:
1 edited

Legend:

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

    r47122 r47557  
    315315    $compare_two_mode = is_numeric( $from );
    316316    if ( ! $compare_two_mode ) {
    317         $found = array_search( $selected_revision_id, array_keys( $revisions ) );
     317        $found = array_search( $selected_revision_id, array_keys( $revisions ), true );
    318318        if ( $found ) {
    319319            $from = array_keys( array_slice( $revisions, $found - 1, 1, true ) );
Note: See TracChangeset for help on using the changeset viewer.