Make WordPress Core


Ignore:
Timestamp:
01/15/2010 10:11:12 PM (15 years ago)
Author:
ryan
Message:

Trailing whitespace cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/comment.php

    r12680 r12733  
    190190        'ID' => '',
    191191        'karma' => '',
    192         'number' => '', 
    193         'offset' => '', 
    194         'orderby' => '', 
    195         'order' => 'DESC', 
     192        'number' => '',
     193        'offset' => '',
     194        'orderby' => '',
     195        'order' => 'DESC',
    196196        'parent' => '',
    197197        'post_ID' => '',
    198198        'post_id' => 0,
    199         'status' => '', 
     199        'status' => '',
    200200        'type' => '',
    201201        'user_id' => '',
     
    236236        $ordersby = is_array($orderby) ? $orderby : preg_split('/[,\s]/', $orderby);
    237237        $ordersby = array_intersect(
    238             $ordersby, 
     238            $ordersby,
    239239            array(
    240240                'comment_agent',
     
    277277    if ( ! empty($post_id) )
    278278        $post_where .= $wpdb->prepare( 'comment_post_ID = %d AND ', $post_id );
    279     if ( '' !== $author_email ) 
     279    if ( '' !== $author_email )
    280280        $post_where .= $wpdb->prepare( 'comment_author_email = %s AND ', $author_email );
    281281    if ( '' !== $karma )
     
    283283    if ( 'comment' == $type )
    284284        $post_where .= "comment_type = '' AND ";
    285     elseif ( ! empty( $type ) ) 
     285    elseif ( ! empty( $type ) )
    286286        $post_where .= $wpdb->prepare( 'comment_type = %s AND ', $type );
    287287    if ( '' !== $parent )
Note: See TracChangeset for help on using the changeset viewer.