From 2fcd70c8f4f0bf846454a18d7844212dbf634cbd Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Sat, 5 Aug 2006 20:44:05 +0000 Subject: [PATCH] fix bad variable call, thanks to stm --- rss.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rss.php b/rss.php index 842f9a71..876bfa30 100644 --- a/rss.php +++ b/rss.php @@ -81,7 +81,7 @@ switch ($_GET['type']) { case 'comments_and_trackbacks': case 'trackbacks': case 'comments': - $entries = serendipity_fetchComments(isset($_GET['cid']) ? $_GET['cid'] : null, $serendipity['RSSfetchLimit'], 'desc', $_GET['type']); + $entries = serendipity_fetchComments(isset($_GET['cid']) ? $_GET['cid'] : null, $serendipity['RSSfetchLimit'], 'desc', false, $_GET['type']); $description = $title . ' - ' . $description; if (isset($_GET['cid'])) { $title = $title . ' - ' . COMMENTS_FROM . ' "' . $latest_entry[0]['title'] . '"';