Changeset 10263 for trunk/wp-admin/edit-comments.php
- Timestamp:
- 12/30/2008 06:30:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r10204 r10263 19 19 20 20 $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 } 23 26 $redirect_to = 'edit-comments.php?comment_status=spam&deleted=' . (int) $deleted_spam; 24 27 if ( $post_id ) … … 276 279 277 280 if ( 'spam' == $comment_status ) { 278 wp_nonce_field('bulk-spam-delete', '_spam_nonce'); ?> 279 <input type="submit" name="delete_all_spam" value="<?php _e('Delete All Spam'); ?>" class="button-secondary apply" /> 280 <?php } ?> 281 wp_nonce_field('bulk-spam-delete', '_spam_nonce'); 282 if ( current_user_can ('moderate_comments')) { ?> 283 <input type="submit" name="delete_all_spam" value="<?php _e('Delete All Spam'); ?>" class="button-secondary apply" /> 284 <?php } 285 } ?> 281 286 <?php do_action('manage_comments_nav', $comment_status); ?> 282 287 </div>
Note: See TracChangeset
for help on using the changeset viewer.