Ticket #2448 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

wp-commentsrss2.php

Reported by: donncha Assigned to: anonymous
Priority: normal Milestone:
Component: General Version: 2.0.1
Severity: major Keywords:
Cc:

Description

Line 35 has an extra ")" at the end. The SQL fails because of it.

Original: AND $wpdb->comments.comment_approved = '1' AND $wpdb->posts.post_status = 'publish')

Should be: AND $wpdb->comments.comment_approved = '1' AND $wpdb->posts.post_status = 'publish'

Change History

02/17/06 01:34:39 changed by ryan

  • status changed from new to closed.
  • resolution set to fixed.

(In [3543]) Remove extraneous paren. fixes #2448