Changeset 6415 for trunk/src/includes/admin/tools/common.php
- Timestamp:
- 05/19/2017 03:25:37 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/tools/common.php
r6320 r6415 191 191 foreach ( $plucked as $components ) { 192 192 foreach ( $components as $component ) { 193 if ( in_array( $component, $retval ) ) {193 if ( in_array( $component, $retval, true ) ) { 194 194 continue; 195 195 } … … 354 354 // Component filter 355 355 if ( ! empty( $component ) ) { 356 if ( ! in_array( $component, $tool['components'] ) ) {356 if ( ! in_array( $component, $tool['components'], true ) ) { 357 357 continue; 358 358 }
Note: See TracChangeset
for help on using the changeset viewer.