Rick,

I found these mods, do you think this is a good idea?

__________

logout.php

original

$_SESSION['forumvisit'] = array(); //

Changed to

// $_SESSION['forumvisit'] = array(); //

Reason

Try to fix the read post to show as read on next log in.

__________

ubbthreads.php

original code

$laston = $user['U_LastOn'];

// -------------------------------------------------------------------
// If this is their first visit for this browser session, set a cookie
// and grab all entries to the w3t_Last table
if ((empty($user['U_LastOn']))) {
$user['U_LastOn'] = $html->get_date();
}


became


// -------------------------------------------------------------------
// If this is their first visit for this browser session, set a cookie
// and grab all entries to the w3t_Last table
if ((empty($user['U_LastOn']))) {
$user['U_LastOn'] = $html->get_date();
}

$laston = $user['U_LastOn'];

Reason

Same as above, to try to fix the read post to show as read on next log in.

__________

Fred