Natch, I think I may have your solution. In the showthread.php:
Find:
PHP Code:
$post = $postarray["$id"];
AFTER it add:
PHP Code:
// Local Date and Time in Post
$post['tzoffset'] = $post['timezoneoffset'];
if ($post['dstonoff'])
{
// DST is on, add an hour
$post['tzoffset']++;
}
$post['localtime'] = date($vboptions['timeformat'], TIMENOW+($post['tzoffset']-$vboptions['timeoffset'])*3600);
$post['localdate'] = date($vboptions['dateformat'], TIMENOW+($post['tzoffset']-$vboptions['timeoffset'])*3600);
// Local Date and Time in Post
and let me know if that fixes it for both of them.