Changeset 3543

Show
Ignore:
Timestamp:
02/17/06 01:34:37 (3 years ago)
Author:
ryan
Message:

Remove extraneous paren. fixes #2448

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-commentsrss2.php

    r3517 r3543  
    3333            $wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments  
    3434            LEFT JOIN $wpdb->posts ON comment_post_id = id WHERE comment_post_ID = '$id'  
    35             AND $wpdb->comments.comment_approved = '1' AND $wpdb->posts.post_status = 'publish')  
     35            AND $wpdb->comments.comment_approved = '1' AND $wpdb->posts.post_status = 'publish'  
    3636            AND post_date_gmt < '" . gmdate("Y-m-d H:i:59") . "'  
    3737            ORDER BY comment_date_gmt DESC LIMIT " . get_settings('posts_per_rss') );