Changeset 37750 for trunk/src/wp-includes/compat.php
- Timestamp:
- 06/19/2016 12:50:15 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/compat.php
r37748 r37750 472 472 473 473 foreach ( array_keys( $head ) as $key ) { 474 if ( isset( $key, $bref ) && is_array( $bref[ $key ] ) && is_array( $head[ $key ] ) ) { 474 if ( isset( $key, $bref ) && 475 isset( $bref[ $key ] ) && is_array( $bref[ $key ] ) && 476 isset( $head[ $key ] ) && is_array( $head[ $key ] ) 477 ) { 475 478 $bref_stack[] = &$bref[ $key ]; 476 479 $head_stack[] = $head[ $key ];
Note: See TracChangeset
for help on using the changeset viewer.