Make WordPress Core


Ignore:
Timestamp:
04/09/2020 03:41:04 PM (5 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/users.php

    r47198 r47557  
    238238        $all_userids = $userids;
    239239
    240         if ( in_array( $current_user->ID, $userids ) ) {
     240        if ( in_array( $current_user->ID, $userids, true ) ) {
    241241            $userids = array_diff( $userids, array( $current_user->ID ) );
    242242        }
Note: See TracChangeset for help on using the changeset viewer.