query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam'" ); wp_redirect('edit-comments.php?deleted=' . (int) $deleted_spam); } if ( !empty( $_REQUEST['delete_comments'] ) && isset($_REQUEST['action']) ) { check_admin_referer('bulk-comments'); $comments_deleted = $comments_approved = $comments_unapproved = $comments_spammed = 0; foreach ($_REQUEST['delete_comments'] as $comment) : // Check the permissions on each $comment = (int) $comment; $post_id = (int) $wpdb->get_var( $wpdb->prepare( "SELECT comment_post_ID FROM $wpdb->comments WHERE comment_ID = %d", $comment) ); if ( !current_user_can('edit_post', $post_id) ) continue; if ( $_REQUEST['action'] == 'markspam' ) { wp_set_comment_status($comment, 'spam'); $comments_spammed++; } elseif ( $_REQUEST['action'] == 'delete' ) { wp_set_comment_status($comment, 'delete'); $comments_deleted++; } elseif ( $_REQUEST['action'] == 'approve' ) { wp_set_comment_status($comment, 'approve'); $comments_approved++; } elseif ( $_REQUEST['action'] == 'unapprove' ) { wp_set_comment_status($comment, 'hold'); $comments_unapproved++; } endforeach; $redirect_to = basename( __FILE__ ) . '?deleted=' . $comments_deleted . '&approved=' . $comments_approved . '&spam=' . $comments_spammed . '&unapproved=' . $comments_unapproved; if ( isset($_REQUEST['apage']) ) $redirect_to = add_query_arg( 'apage', absint($_REQUEST['apage']), $redirect_to ); if ( !empty($_REQUEST['mode']) ) $redirect_to = add_query_arg('mode', $_REQUEST['mode'], $redirect_to); if ( !empty($_REQUEST['comment_status']) ) $redirect_to = add_query_arg('comment_status', $_REQUEST['comment_status'], $redirect_to); if ( !empty($_REQUEST['s']) ) $redirect_to = add_query_arg('s', $_REQUEST['s'], $redirect_to); wp_redirect( $redirect_to ); } elseif ( !empty($_GET['_wp_http_referer']) ) { wp_redirect(remove_query_arg(array('_wp_http_referer', '_wpnonce'), stripslashes($_SERVER['REQUEST_URI']))); exit; } require_once('admin-header.php'); $mode = ( ! isset($_GET['mode']) || empty($_GET['mode']) ) ? 'detail' : attribute_escape($_GET['mode']); $comment_status = isset($_GET['comment_status']) ? attribute_escape($_GET['comment_status']) : ''; $post_id = isset($_GET['p']) ? (int) $_GET['p'] : 0; $search_dirty = ( isset($_GET['s']) ) ? $_GET['s'] : ''; $search = attribute_escape( $search_dirty ); ?>
0 || $deleted > 0 || $spam > 0 ) { echo '

'; if ( $approved > 0 ) { printf( __ngettext( '%s comment approved', '%s comments approved', $approved ), $approved ); echo '
'; } if ( $deleted > 0 ) { printf( __ngettext( '%s comment deleted', '%s comments deleted', $deleted ), $deleted ); echo '
'; } if ( $spam > 0 ) { printf( __ngettext( '%s comment marked as spam', '%s comments marked as spam', $spam ), $spam ); echo '
'; } echo '

'; } } ?>

add_query_arg( 'apage', '%#%' ), 'format' => '', 'total' => ceil($total / $comments_per_page), 'current' => $page )); ?>
$page_links
"; ?>


comment_ID, $mode, $comment_status ); ?> comment_ID, $mode, $comment_status ); ?>

$page_links
"; ?>