";
exit();
}
$post = getPost($_GET['id']);
$thread = getThread($post->thread);
updatePost($post->id, $_POST['content']);
header('Location: thread.php?id='.$thread->id);
}
$logged_in_user = get_logged_in_user();
page_head('Forum', $logged_in_user, NULL, 'forum.css');
if (!empty($_GET['id'])) {
$post = getPost($_GET['id']);
$thread = getThread($post->thread);
$forum = getForum($thread->forum);
$category = getCategory($forum->category);
} else {
// TODO: Standard error page
echo "No post was specified.
";
exit();
}
if ($logged_in_user->id != $post->user) {
// Can't edit other's posts.
echo "You are not authorized to edit this post.";
exit();
}
show_forum_title($forum, $thread, $category->is_helpdesk);
echo "