Make WordPress Core

Ticket #23805: 23805.diff

File 23805.diff, 1.5 KB (added by GaryJ, 11 years ago)
  • wp-admin/includes/ajax-actions.php

     
    859859        foreach ( (array) $_POST['menu-item'] as $menu_item_data ) {
    860860                if (
    861861                        ! empty( $menu_item_data['menu-item-type'] ) &&
    862                         'custom' != $menu_item_data['menu-item-type'] &&
     862                        in_array( $menu_item_data['menu-item-type'], array( 'post_type', 'taxonomy' ) ) &&
    863863                        ! empty( $menu_item_data['menu-item-object-id'] )
    864864                ) {
    865865                        switch( $menu_item_data['menu-item-type'] ) {
     
    21792179
    21802180        //if we are comparing two revisions, the first 'revision' represented by the leftmost
    21812181        //slider position is the current revision, prepend a comparison to this revision
    2182         if ( $compare_two_mode ) 
     2182        if ( $compare_two_mode )
    21832183                array_unshift( $revisions, get_post( $post_id ) );
    2184                
     2184
    21852185        $count = -1;
    21862186
    21872187        foreach ( $revisions as $revision ) :
     
    21922192                $count++;
    21932193                // return blank data for diffs to the left of the left handle (for right handel model)
    21942194                // or to the right of the right handle (for left handel model)
    2195                 if ( ( 0 != $left_handle_at && $count <= $left_handle_at ) || 
    2196                          ( 0 != $right_handle_at && $count > $right_handle_at )) { 
     2195                if ( ( 0 != $left_handle_at && $count <= $left_handle_at ) ||
     2196                         ( 0 != $right_handle_at && $count > $right_handle_at )) {
    21972197                        $alltherevisions[] = array (
    21982198                                'ID' => $revision->ID,
    21992199                        );
    2200                        
     2200
    22012201                        continue;
    22022202                }
    22032203