John,
To make it function exactly as it does in editpost.php you'd need to add this bit of code to functions_showthread.php:
Code:
// find out if first post
$getpost = $DB_site->query_first("
SELECT postid
FROM " . TABLE_PREFIX . "post
WHERE threadid=$threadinfo[threadid]
ORDER BY dateline
LIMIT 1
");
if ($getpost['postid'] == $postid)
{
$isfirstpost = true;
}
else
{
$isfirstpost = false;
}
This will add a query to showthread though. Not worth it IMO.
Dewayne