in archive_functions.php
replace the
PHP Code:
function print_header()
{
global $archiveurl, $title;
echo "
<html>
<head><title>$title</title></head>
<base href=\"$archiveurl/\">
<body>
";
include "$archiveurl/header.php";
}
with
PHP Code:
function print_header()
{
global $archiveurl, $title, $forum, $thread;
// Build Page Title
$pagetitle = $title;
if ($thread['title'] != '')
{
$pagetitle .= ' - ' . $thread['title'];
}
else if ($forum['title'] != '')
{
$pagetitle .= ' - ' . $forum['title'];
}
echo "
<html>
<head><title>$pagetitle</title></head>
<base href=\"$archiveurl/\">
<body>
";
include "$archiveurl/header.php";
}
that should work