rss_self_link = SITE_URL . 'forumrss.php'; $RSS->content_type = 'forum'; $RSS->forum_id = 'all'; if($forum_id) { $RSS->forum_id = $forum_id; } // ############################################################################ // DISPLAY RSS // ############################################################################ header("Content-Type: application/xml; " . $mainsettings_charset); if($RSS->GetFeed()) { $RSS->DisplayFeed(); } // ############################################################################ // CLOSE DB CONNECTION // ############################################################################ if($DB->conn) { $DB->close(); } ?>