Added a FIXME
authorArt Cancro <ajc@citadel.org>
Wed, 13 Oct 2010 22:35:29 +0000 (18:35 -0400)
committerArt Cancro <ajc@citadel.org>
Wed, 13 Oct 2010 22:35:29 +0000 (18:35 -0400)
webcit/feed_generator.c

index 5ec8aad2155d205ba5a61ae49b19f8440125835f..46809dc313aaf49ffb676807fdfdc94e7975add8 100644 (file)
@@ -31,6 +31,8 @@ void feed_rss_one_message(long msgnum) {
        int found_title = 0;
        char pubdate[128];
 
+       /* FIXME if this is a blog room we only want to include top-level messages */
+
        serv_printf("MSG0 %ld", msgnum);                /* FIXME we want msg4 eventually */
        serv_getln(buf, sizeof buf);
        if (buf[0] != '1') return;