Changeset 51472
- Timestamp:
- 07/22/2021 10:05:33 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme-json-resolver.php
r51284 r51472 122 122 if ( is_numeric( $property ) ) { 123 123 foreach ( $partial_child as $key => $context ) { 124 return array( 125 array( 126 'path' => $current_path, 127 'key' => $key, 128 'context' => $context, 129 ), 124 $result[] = array( 125 'path' => $current_path, 126 'key' => $key, 127 'context' => $context, 130 128 ); 131 129 } 130 return $result; 132 131 } 133 132 $result = array_merge(
Note: See TracChangeset
for help on using the changeset viewer.