Please change section on 552 of include.php to this
// If a user is logged in, display logout text
if( isset($_COOKIE["usr"]) )
{
if( $_COOKIE["usr"] != "|" )
{
echo '<table align="right">';
echo '<tr>';
echo '<td><a href="index.php?do=logout">' . _MSGLogout . '</a></td>';
echo '</tr>';
echo '</table>';
}
elseif( isset($_SESSION["usr"]) )
{
echo '<table align="right">';
echo '<tr>';
echo '<td><a href="index.php?do=logout">' . _MSGLogout . '</a></td>';
echo '</tr>';
echo '</table>';
}
quick dirty fix for logout.

