Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r10162 r10439  
    1919
    2020        $delete_time = $wpdb->escape( $_REQUEST['pagegen_timestamp'] );
    21         $deleted_spam = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" );
    22 
     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        }
    2326        $redirect_to = 'edit-comments.php?comment_status=spam&deleted=' . (int) $deleted_spam;
    2427        if ( $post_id )
     
    273276
    274277if ( 'spam' == $comment_status ) {
    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 } ?>
     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} ?>
    278283<?php do_action('manage_comments_nav', $comment_status); ?>
    279284</div>
     
    325330<option value="unapprove"><?php _e('Unapprove'); ?></option>
    326331<?php endif; ?>
    327 <?php if ( empty($comment_status) || 'moderated' == $comment_status ): ?>
     332<?php if ( empty($comment_status) || 'moderated' == $comment_status || 'spam' == $comment_status ): ?>
    328333<option value="approve"><?php _e('Approve'); ?></option>
    329334<?php endif; ?>
Note: See TracChangeset for help on using the changeset viewer.