Skip to:
Content

bbPress.org


Ignore:
Timestamp:
05/19/2017 03:25:37 AM (9 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/users/functions.php

    r6407 r6415  
    675675
    676676    // Bail if actions aren't meant for this function
    677     if ( ! in_array( $action, $possible_actions ) ) {
     677    if ( ! in_array( $action, $possible_actions, true ) ) {
    678678        return;
    679679    }
     
    13341334
    13351335    // Bail if actions aren't meant for this function
    1336     if ( ! in_array( $action, $possible_actions ) ) {
     1336    if ( ! in_array( $action, $possible_actions, true ) ) {
    13371337        return;
    13381338    }
     
    14411441
    14421442    // Bail if actions aren't meant for this function
    1443     if ( ! in_array( $action, $possible_actions ) ) {
     1443    if ( ! in_array( $action, $possible_actions, true ) ) {
    14441444        return;
    14451445    }
     
    23212321
    23222322    // Bail if not editing or displaying (maybe we'll do more here later)
    2323     if ( ! in_array( $context, array( 'edit', 'display' ) ) ) {
     2323    if ( ! in_array( $context, array( 'edit', 'display' ), true ) ) {
    23242324        return $value;
    23252325    }
Note: See TracChangeset for help on using the changeset viewer.