Opened 19 years ago
Closed 19 years ago
#2448 closed defect (bug) (fixed)
wp-commentsrss2.php
Reported by: |
|
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'
Pull Requests
- Loading…
Note: See
TracTickets for help on using
tickets.
(In [3543]) Remove extraneous paren. fixes #2448