2003-07-18 21:38:51 +00:00
|
|
|
<?php
|
|
|
|
require_once('../include.php');
|
2003-07-18 22:36:22 +00:00
|
|
|
require_once('../util.inc');
|
2003-07-18 21:38:51 +00:00
|
|
|
require_once('forum.inc');
|
|
|
|
doHeader('Forum');
|
|
|
|
|
|
|
|
/* sanitize variable */
|
|
|
|
$_GET['id'] = stripslashes(strip_tags($_GET['id']));
|
|
|
|
|
|
|
|
$thread = getThread($_GET['id']);
|
|
|
|
$thread->incView();
|
|
|
|
|
|
|
|
$forum = getForum($thread->forum);
|
2003-07-18 22:36:22 +00:00
|
|
|
|
|
|
|
$logged_in_user = get_logged_in_user(false);
|
|
|
|
|
2003-07-18 21:38:51 +00:00
|
|
|
?>
|
|
|
|
|
|
|
|
<p>
|
|
|
|
<span class="title"><?php echo $thread->title ?></span>
|
2003-07-18 22:36:22 +00:00
|
|
|
<br><a href="index.php"><?php echo $cfg['sitename'] ?> Forum</a> -> <a href="forum.php?id=<?php echo $forum->id ?>"><?php echo $forum->title ?></a>
|
2003-07-18 21:38:51 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
2003-07-24 22:57:00 +00:00
|
|
|
<a href=reply.php?thread=<?php echo $thread->id ?>>Reply to this topic</a>
|
2003-07-18 21:38:51 +00:00
|
|
|
</p>
|
|
|
|
<p style="text-align:center">
|
|
|
|
<table class="content" border="0" cellpadding="5" cellspacing="0" width="100%">
|
|
|
|
<tr>
|
|
|
|
<th style="width: 150px">Author</th>
|
|
|
|
<th>Message</th>
|
|
|
|
</tr>
|
2003-07-24 22:57:00 +00:00
|
|
|
<!--</table>-->
|
2003-07-18 21:38:51 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
$n = 0;
|
|
|
|
$posts = $thread->getPosts();
|
2003-07-24 22:57:00 +00:00
|
|
|
while ($post = getNextPost($posts)) {
|
|
|
|
show_post_hierarchy($post, $thread, 0);
|
|
|
|
}
|
2003-07-18 21:38:51 +00:00
|
|
|
?>
|
|
|
|
</table>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<?php
|
|
|
|
doFooter();
|
2003-07-21 22:02:20 +00:00
|
|
|
?>
|
2003-07-24 22:57:00 +00:00
|
|
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
function show_post_hierarchy($post, $thread, $indent) {
|
|
|
|
//$children = $post->getImmediateChildren();
|
|
|
|
|
|
|
|
show_post($post, $thread, $indent);
|
|
|
|
|
|
|
|
//while ($childPost = getNextPost($children)) {
|
|
|
|
// show_post_hierarchy($childPost, $thread, $indent+1);
|
|
|
|
//}
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_post($post, $thread, $indent) {
|
|
|
|
global $n;
|
|
|
|
$user = getUser($post->user);
|
|
|
|
$can_edit = $logged_in_user && $user->id == $logged_in_user->id;
|
|
|
|
|
|
|
|
?>
|
|
|
|
<!--<table class="content" border="0" cellpadding="5" cellspacing="0" width="100%">-->
|
|
|
|
<tr class="row<?php echo (($n++)%2+1) ?>" style="vertical-align:top">
|
|
|
|
<?php
|
|
|
|
//for ($i = 0; $i < $indent; $i++) {
|
|
|
|
// echo "<td> </td>";
|
|
|
|
//}
|
|
|
|
?>
|
|
|
|
<td>
|
|
|
|
<p style="font-weight:bold">
|
|
|
|
<?php if ($user->has_profile) { ?>
|
|
|
|
<a href="../view_profile.php?userid=<?php echo $post->user ?>"><?php echo $user->name ?></a>
|
|
|
|
<?php } else { echo $user->name; } ?>
|
|
|
|
</p>
|
|
|
|
<p style="font-size:8pt">
|
|
|
|
Joined: <?php echo date('M j, Y', $user->create_time) ?>
|
|
|
|
<br>Posts: <?php echo $user->posts ?>
|
|
|
|
</p>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<p style="font-size:8pt">
|
|
|
|
Posted: <?php echo date('D M j, Y g:i a', $post->timestamp) ?><?php if ($can_edit) echo " <a href=\"edit.php?id=$post->id\">[Edit this post]</a>" ?>
|
|
|
|
<?php if ($post->modified) echo "<br>Last Modified: ", date('D M j, Y g:i a', $post->modified) ?>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<p><?php echo nl2br(stripslashes($post->content)) ?></p>
|
|
|
|
<p>[<a href="reply.php?thread=<?php echo $thread->id ?>&post=<?php echo $post->id ?>#input">Reply to this post</a>]</p>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<!--</table>-->
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|