threadGet($thread_id,0,999);
$thread_name = $tp->toHTML($thread_info[0]['thread_name'], TRUE);
$text = "".$thread_name."
".$thread_info[0]['user_name'].", ".$gen->convert_date($thread_info[0]['thread_datestamp'], "forum")."
".$tp->toHTML($thread_info[0]['thread_thread'], TRUE);
$count = 1;
unset($thread_info[0], $thread_info['head']);
foreach($thread_info as $reply)
{
$text .= "
Re: ".$thread_name."
".$reply['user_name'].", ".$gen->convert_date($reply['thread_datestamp'], "forum")."
".$tp->toHTML($reply['thread_thread'], TRUE);
}
return $text;
}