Make WordPress Core

Changeset 10116


Ignore:
Timestamp:
12/07/2008 12:18:04 PM (16 years ago)
Author:
azaozz
Message:

Fix comment actions after using QE when listing pending and spam comments

Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/admin-ajax.php

    r10104 r10116  
    601601
    602602    ob_start();
    603         _wp_comment_row( $comment_id, $mode, false, $checkbox );
     603        _wp_comment_row( $comment_id, $mode, true, $checkbox );
    604604        $comment_list_item = ob_get_contents();
    605605    ob_end_clean();
  • trunk/wp-admin/js/edit-comments.js

    r10063 r10116  
    260260            .animate( { 'backgroundColor': bg }, 600 );
    261261
    262         theList = theExtraList = null;
    263         $("#get-extra-comments, a[className*=':']").unbind();
    264         setCommentsList();
    265 
     262        $.fn.wpList.process($(id))
    266263    },
    267264
  • trunk/wp-includes/script-loader.php

    r10110 r10116  
    157157            'strong' => __('Strong')
    158158        ) );
    159         $scripts->add( 'admin-comments', '/wp-admin/js/edit-comments.js', array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20081205' );
     159        $scripts->add( 'admin-comments', '/wp-admin/js/edit-comments.js', array('wp-lists', 'jquery-ui-resizable', 'quicktags'), '20081206' );
    160160        $scripts->localize( 'admin-comments', 'adminCommentsL10n', array(
    161161            'hotkeys_highlight_first' => isset($_GET['hotkeys_highlight_first']),
Note: See TracChangeset for help on using the changeset viewer.