Make WordPress Core


Ignore:
Timestamp:
09/14/2009 02:03:32 PM (17 years ago)
Author:
ryan
Message:

Remove trailing whitespace

File:
1 edited

Legend:

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

    r11841 r11930  
    2020if ( isset($_REQUEST['doaction']) ||  isset($_REQUEST['doaction2']) || isset($_REQUEST['delete_all']) || isset($_REQUEST['delete_all2']) ) {
    2121        check_admin_referer('bulk-comments');
    22        
     22
    2323        if ((isset($_REQUEST['delete_all']) || isset($_REQUEST['delete_all2'])) && !empty($_REQUEST['pagegen_timestamp'])) {
    2424                $comment_status = $wpdb->escape($_REQUEST['comment_status']);
     
    3030                $doaction = ($_REQUEST['action'] != -1) ? $_REQUEST['action'] : $_REQUEST['action2'];
    3131        } else wp_redirect($_SERVER['HTTP_REFERER']);
    32        
     32
    3333        $approved = $unapproved = $spammed = $trashed = $untrashed = $deleted = 0;
    34        
     34
    3535        foreach ($comment_ids as $comment_id) { // Check the permissions on each
    3636                $_post_id = (int) $wpdb->get_var( $wpdb->prepare( "SELECT comment_post_ID FROM $wpdb->comments WHERE comment_ID = %d", $comment_id) );
Note: See TracChangeset for help on using the changeset viewer.