Changeset 51515
- Timestamp:
- 07/30/2021 12:20:38 PM (4 years ago)
- Location:
- branches/5.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/5.8
-
branches/5.8/src/wp-includes/class-wp-theme-json-resolver.php
r51315 r51515 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.