Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 42 → Rev 43

/_taios.php
119,11 → 119,11
write('<h5 style="color: #666666;">Posted On ' . date('l j F Y', $post->datePosted) . ' by ' . $post->user->name . ' (' . $post->user->username . ')</h5>');
write('<p>' . $post->content . '</p>');
 
$ids = $this->findIDs('BlogPosts', 'WHERE ParentID = ' . $id);
$ids = $this->findIDs('BlogPosts', 'WHERE ParentID=' . $id);
for ($i = 0; $i < count($ids); $i++)
{
write('<p class="indent">');
$this->drawBlogPostTree($i);
$this->drawBlogPostTree($ids[$i]);
write('</p>');
}