| 1 | 33,34c33,34 |
|---|
| 2 | < comment_author_url, comment_date, comment_date_gmt, comment_content, comment_post_ID, |
|---|
| 3 | < $wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments |
|---|
| 4 | --- |
|---|
| 5 | > comment_author_url, comment_date, comment_content, comment_post_ID, |
|---|
| 6 | > $wpdb->posts.ID, $wpdb->posts.post_password, $wpdb->posts.post_title FROM $wpdb->comments |
|---|
| 7 | 38c38 |
|---|
| 8 | < ORDER BY comment_date DESC LIMIT " . get_settings('posts_per_rss') ); |
|---|
| 9 | --- |
|---|
| 10 | > ORDER BY comment_date"; |
|---|
| 11 | 42c42 |
|---|
| 12 | < $wpdb->posts.ID, $wpdb->posts.post_password FROM $wpdb->comments |
|---|
| 13 | --- |
|---|
| 14 | > $wpdb->posts.ID, $wpdb->posts.post_password, $wpdb->posts.post_title FROM $wpdb->comments |
|---|
| 15 | 52c52 |
|---|
| 16 | < <title>by: <?php comment_author_rss() ?></title> |
|---|
| 17 | --- |
|---|
| 18 | > <title><?php comment_author_rss() ?> on '<?php echo $comment->post_title; ?>'</title> |
|---|