Changeset 15512 for trunk/wp-admin/admin-ajax.php
- Timestamp:
- 08/20/2010 11:18:41 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/admin-ajax.php
r15508 r15512 633 633 die('1'); 634 634 635 if ( get_option('show_avatars') )636 add_filter( 'comment_author', 'floated_admin_avatar' );637 638 635 $x = new WP_Ajax_Response(); 639 636 foreach ( $table->items as $comment ) { … … 728 725 $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0; 729 726 730 if ( get_option('show_avatars') && 'single' != $mode )731 add_filter( 'comment_author', 'floated_admin_avatar' );732 733 727 $x = new WP_Ajax_Response(); 734 728 … … 770 764 $checkbox = ( isset($_POST['checkbox']) && true == $_POST['checkbox'] ) ? 1 : 0; 771 765 $comments_listing = isset($_POST['comments_listing']) ? $_POST['comments_listing'] : ''; 772 773 if ( get_option('show_avatars') && 'single' != $mode )774 add_filter( 'comment_author', 'floated_admin_avatar' );775 766 776 767 require_once( './includes/default-list-tables.php' );
Note: See TracChangeset
for help on using the changeset viewer.