I discovered a minor issue - when the comment e-mail address is left blank, the RSS does not validate - i amended this by adding:
$webmaster_email = "johndoe@hydropia.org"; // revised webmaster e-mail for rss validation
to the fb_settings.php file, I then amended line 325 of the fb.php file as follows:
$rss = "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n<rss version=\"2.0\">\n<channel>\n<generator>Folderblog 3</generator>\n<title>$fbblogtitle</title>\n<link>http://" . $_SERVER["SERVER_NAME"] . "$fbfile</link>\n<description>$rss_desc</description>\n<language>$rss_lang</language>\n<lastBuildDate>" . date("r") . "</lastBuildDate>\n<webMaster>$webmaster_email</webMaster>\n<docs>http://blogs.law.harvard.edu/tech/rss</docs>\n";
works just fine and it means i can validate without being sent a mail if someone posts a comment :)
posted by anon on 8 Nov 05 at 11:16 AM

