Changeset 21184
- Timestamp:
- 06/29/2012 07:42:27 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r21181 r21184 2403 2403 $matched = 0; 2404 2404 foreach ( $args as $m_key => $m_value ) { 2405 if ( $m_value == $to_match[ $m_key ] )2405 if ( array_key_exists( $m_key, $to_match ) && $m_value == $to_match[ $m_key ] ) 2406 2406 $matched++; 2407 2407 }
Note: See TracChangeset
for help on using the changeset viewer.