Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 103 → Rev 104

/blog/index.php
26,7 → 26,7
{
$id = $ids[$i];
$post = $page->getBlogPost($id);
write('<a href="post.php?id=' . $ids[$i] . '"><h3>' . $post->title. '</h3></a>');
write('<a href="post.php?id=' . $id . '"><h3>' . $post->title. '</h3></a>');
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>');
}
/_taios.php
311,7 → 311,8
{
$post->parent = $this->getBlogPost($row['ParentID']);
}
$post->user = $this->getUserByID($row['AuthorID']);
$post->author = $this->getUserByID($row['AuthorID']);
$post-user = $this->getUserByID($row['AuthorID']); // For some older pages
$post->title = $row['Title'];
$post->content = $row['Content'];
$post->datePosted = strtotime($row['DatePosted']);
/admin/all-blog-posts.php
38,7 → 38,7
{
write('<td>' . $post->parent->ID . '</td>');
}
write('<td>' . $post->author->ID . '</td>');
write('<td>' . $post->user->ID . '</td>');
write('<td>' . $post->title . '</td>');
write('<td>' . $post->content . '</td>');
write('<td>' . $post->datePosted . '</td>');