I too am getting the "mark all forums read" as a result of trying to mark them individually.
I see where SW posted that he was able to redo the session.php mods, but I am a bit confused.
From that file, we have (around line 342)
PHP Code:
$bbuserinfo['lastvisit']=$bbuserinfo['lastactivity'];
And from line ~352, there is
PHP Code:
$bbuserinfo['lastvisit']=$bbuserinfo['lastvisit'];
First, the instructions call to make the mods at the
second instance of $bbuserinfo['lastvisit']=$bbuserinfo['lastactivity']; but I can only find the one case.
Secondly, there is an additional piece that is to be made at the $bbuserinfo['lastvisit']=$bbuserinfo['lastvisit']; but doesn't say which one - the one that Ethan added in the first group or the one that was there to begin with?
The remaining code (between 342 and 352) before modifications is
PHP Code:
} else {
if (!isset($bypass)) {
if ($noshutdownfunc) {
$DB_site->query("UPDATE user SET lastactivity=".time()." WHERE userid='$bbuserinfo[userid]'");
} else {
$shutdownqueries[]="UPDATE user SET lastactivity=".time()." WHERE userid='$bbuserinfo[userid]'";
// This update will be done in the doshutdownfunction automatically, but the old method was doing screwy things!!
}
Where do these additions go in relation to that?