Ticket #7552: delete-spam-time-check.2.patch
File delete-spam-time-check.2.patch, 1.3 KB (added by , 16 years ago) |
---|
-
wp-admin/edit-comments.php
17 17 if ( ( isset( $_POST['delete_all_spam'] ) || isset( $_POST['delete_all_spam2'] ) ) && !empty( $_POST['pagegen_timestamp'] ) ) { 18 18 check_admin_referer('bulk-spam-delete'); 19 19 20 $formtime = (int) $_POST['pagegen_timestamp']; 20 $delete_time = $wpdb->escape( $_POST['display_time'] ); 21 $deleted_spam = $wpdb->query( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND '$delete_time' > comment_date_gmt" ); 21 22 22 $deleted_spam = $wpdb->query( $wpdb->prepare( "DELETE FROM $wpdb->comments WHERE comment_approved = 'spam' AND comment_date_gmt < FROM_UNIXTIME(%d)", $formtime ) );23 23 wp_redirect('edit-comments.php?deleted=' . (int) $deleted_spam); 24 24 } 25 25 … … 210 210 <form id="comments-form" action="" method="post"> 211 211 <input type="hidden" name="mode" value="<?php echo $mode; ?>" /> 212 212 <input type="hidden" name="comment_status" value="<?php echo $comment_status; ?>" /> 213 <input type="hidden" name="pagegen_timestamp" value="<?php echo current_time( 'timestamp', TRUE); ?>" />213 <input type="hidden" name="pagegen_timestamp" value="<?php echo current_time('mysql', 1); ?>" /> 214 214 215 215 <div class="tablenav"> 216 216