Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/19/2017 03:25:37 AM (7 years ago)
Author:
johnjamesjacoby
Message:

in_array(): be strict whenever possible.

Use wp_parse_id_list() on certain array values to ensure proper results.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/tools/common.php

    r6320 r6415  
    191191    foreach ( $plucked as $components ) {
    192192        foreach ( $components as $component ) {
    193             if ( in_array( $component, $retval ) ) {
     193            if ( in_array( $component, $retval, true ) ) {
    194194                continue;
    195195            }
     
    354354        // Component filter
    355355        if ( ! empty( $component ) ) {
    356             if ( ! in_array( $component, $tool['components'] ) ) {
     356            if ( ! in_array( $component, $tool['components'], true ) ) {
    357357                continue;
    358358            }
Note: See TracChangeset for help on using the changeset viewer.