Just in case someday you want to integrate your latest bug reports in your website, you can do that with this micro RSS reader
PHP:
<?php
$feed = new SimpleXmlElement('http://bugs.flyspray.org/feed.php?feed_type=rss1&project=1', NULL, TRUE);
foreach ($feed->item as $bug) {
printf('<a href="%s">%s</a></br>', $bug->link, $bug->title);
}
?>
Replace the URL with the one of your BTS ( PHP5 with SimpleXML required) . Remember to save a cache of your feeds on disk as well, otherwise this will request the file over and over again and will slow down your server significantly if you have enough traffic in your site