Changeset 33734 for trunk/src/wp-includes/class-wp-walker.php
- Timestamp:
- 08/25/2015 08:27:56 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-walker.php
r32549 r33734 149 149 if ( ($max_depth == 0 || $max_depth > $depth+1 ) && isset( $children_elements[$id]) ) { 150 150 151 foreach ( $children_elements[ $id ] as $child ){151 foreach ( $children_elements[ $id ] as $child ){ 152 152 153 153 if ( !isset($newlevel) ) { … … 251 251 $empty_array = array(); 252 252 foreach ( $children_elements as $orphans ) 253 foreach ( $orphans as $op )253 foreach ( $orphans as $op ) 254 254 $this->display_element( $op, $empty_array, 1, 0, $args, $output ); 255 255 } … … 375 375 $empty_array = array(); 376 376 foreach ( $children_elements as $orphans ) 377 foreach ( $orphans as $op )377 foreach ( $orphans as $op ) 378 378 $this->display_element( $op, $empty_array, 1, 0, $args, $output ); 379 379 }
Note: See TracChangeset
for help on using the changeset viewer.