Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 416 → Rev 424

/blog/rss.php
22,7 → 22,7
write('<link>http://tim32.org/blog/post.php?id=' . $id . '</link>');
write('<guid>' . $id . '</guid>');
write('<pubDate>' . date('D, d M Y H:i:s O', $post->datePosted). '</pubDate>');
write('<description>' . $page->replaceBBCode($post->content) . '</description>');
write('<description>' . str_replace(">", "&gt;", str_replace(">", "&lt;", $page->replaceBBCode($post->content))) . '</description>');
write('</item>');
}