Make WordPress Core

Opened 19 years ago

Closed 19 years ago

#2448 closed defect (bug) (fixed)

wp-commentsrss2.php

Reported by: donncha's profile donncha Owned by:
Milestone: Priority: normal
Severity: major Version: 2.0.1
Component: General Keywords:
Focuses: 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 (1)

#1 @ryanLead Tester
19 years ago

  • Resolution set to fixed
  • Status changed from new to closed

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

Note: See TracTickets for help on using tickets.