Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-comments.php

    r10439 r10162  
    1919
    2020    $delete_time = $wpdb->escape( $_REQUEST['pagegen_timestamp'] );
    21     if ( current_user_can('moderate_comments')) {
    22         $deleted_spam = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
    23     } else {
    24         $deleted_spam = 0;
    25     }
     21    $deleted_spam = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
     22
    2623    $redirect_to = 'edit-comments.php?comment_status=spam&deleted=' . (int) $deleted_spam;
    2724    if ( $post_id )
     
    276273
    277274if ( 'spam' == $comment_status ) {
    278     wp_nonce_field('bulk-spam-delete', '_spam_nonce');
    279         if ( current_user_can ('moderate_comments')) { ?>
    280         <input type="submit" name="delete_all_spam" value="<?php _e('Delete All Spam'); ?>" class="button-secondary apply" />
    281 <?php   }
    282 } ?>
     275    wp_nonce_field('bulk-spam-delete', '_spam_nonce'); ?>
     276<input type="submit" name="delete_all_spam" value="<?php _e('Delete All Spam'); ?>" class="button-secondary apply" />
     277<?php } ?>
    283278<?php do_action('manage_comments_nav', $comment_status); ?>
    284279</div>
     
    330325<option value="unapprove"><?php _e('Unapprove'); ?></option>
    331326<?php endif; ?>
    332 <?php if ( empty($comment_status) || 'moderated' == $comment_status || 'spam' == $comment_status ): ?>
     327<?php if ( empty($comment_status) || 'moderated' == $comment_status ): ?>
    333328<option value="approve"><?php _e('Approve'); ?></option>
    334329<?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.