Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 256 → Rev 257

/forums/post.php
11,7 → 11,7
write('<p class="bold"><a href="index.php?parentID=' . $forumPost->category->ID . '">Back to Topics</a></p><br />');
 
write('<h3>' . $forumPost->title . '</h3>');
write('<p>' . $forumPost->content . '</p>');
write('<p>' . $page->replaceBBCode($forumPost->content) . '</p>');
write('<br />');
 
$ids = $page->findIDs('ForumPosts', 'WHERE ParentID = ' . $id . ' ORDER BY DatePosted DESC');
19,7 → 19,7
{
$forumPost = $page->getForumPost($ids[$i]);
write('<h4>' . $forumPost->title . '</h4>');
write('<p>' . $forumPost->content . '</p>');
write('<p>' . $page->replaceBBCode($forumPost->content) . '</p>');
write('<br />');
}