Make WordPress Core


Ignore:
Timestamp:
06/14/2010 11:39:35 PM (14 years ago)
Author:
ryan
Message:

Remove trailing whites

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/nav-menu-template.php

    r15257 r15259  
    331331            $_anc_id = (int) $menu_item->db_id;
    332332
    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 )
    336336            ) {
    337337                $active_ancestor_item_ids[] = $_anc_id;
     
    356356                $_anc_id = (int) $menu_item->db_id;
    357357
    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 )
    361361                ) {
    362362                    $active_ancestor_item_ids[] = $_anc_id;
Note: See TracChangeset for help on using the changeset viewer.