Changeset 15259 for trunk/wp-includes/nav-menu-template.php
- Timestamp:
- 06/14/2010 11:39:35 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/nav-menu-template.php
r15257 r15259 331 331 $_anc_id = (int) $menu_item->db_id; 332 332 333 while( 334 ( $_anc_id = get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) ) && 335 ! in_array( $_anc_id, $active_ancestor_item_ids ) 333 while( 334 ( $_anc_id = get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) ) && 335 ! in_array( $_anc_id, $active_ancestor_item_ids ) 336 336 ) { 337 337 $active_ancestor_item_ids[] = $_anc_id; … … 356 356 $_anc_id = (int) $menu_item->db_id; 357 357 358 while( 359 ( $_anc_id = get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) ) && 360 ! in_array( $_anc_id, $active_ancestor_item_ids ) 358 while( 359 ( $_anc_id = get_post_meta( $_anc_id, '_menu_item_menu_item_parent', true ) ) && 360 ! in_array( $_anc_id, $active_ancestor_item_ids ) 361 361 ) { 362 362 $active_ancestor_item_ids[] = $_anc_id;
Note: See TracChangeset
for help on using the changeset viewer.