Make WordPress Core

Ticket #24346: 24346.diff

File 24346.diff, 941 bytes (added by adamsilverstein, 12 years ago)

mark diff as complete that don't need loading

  • wp-admin/includes/ajax-actions.php

     
    22082208                        if ( ( ( 0 != $left_handle_at && $count < $left_handle_at ) ||
    22092209                                 ( 0 != $right_handle_at && $count > ( $right_handle_at - 2 ) ) ) ) {
    22102210                                $all_the_revisions[] = array (
    2211                                         'ID' => $revision->ID,
     2211                                        'ID'        => $revision->ID,
     2212                                        'completed' => true, //mark as completed, no need to load diff
    22122213                                );
    22132214                                continue;
    22142215                        }
     
    22162217                        if ( ( 0 != $left_handle_at && $count > ( $left_handle_at - 1 ) ||
    22172218                                 ( 0 != $left_handle_at && $count < $right_handle_at ) ) ) {
    22182219                                $all_the_revisions[] = array (
    2219                                         'ID' => $revision->ID,
     2220                                        'ID'        => $revision->ID,
     2221                                        'completed' => true, //mark as completed, no need to load diff
    22202222                                );
    22212223                                continue;
    22222224                        }