Ticket #20929: functions.wp_list_filter.patch
| File functions.wp_list_filter.patch, 435 bytes (added by wpsmith, 12 months ago) |
|---|
-
wp-includes/functions.php
2496 2496 2497 2497 $matched = 0; 2498 2498 foreach ( $args as $m_key => $m_value ) { 2499 if ( $m_value == $to_match[ $m_key ] )2499 if ( array_key_exists( $m_key, $to_match ) && $m_value == $to_match[ $m_key ] ) 2500 2500 $matched++; 2501 2501 } 2502 2502