Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 69 → Rev 70

/_taios.php
115,7 → 115,7
function drawBlogPostTree($id)
{
$post = $this->getBlogPost($id);
write('<a href="' . $id . '"><h3>' . $post->title. '</h3></a>');
write('<a href="' . $this->url . 'blog/post.php?' . $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>');
 
/admin/account-do.php
50,3 → 50,4
$page->redirect('account.php?id=' . $userID);
 
?>
 
/admin/account.php
57,3 → 57,4
$page->drawFooter();
 
?>
 
/admin/index.php
24,3 → 24,4
$page->drawFooter();
 
?>