FWC:
I am using version 2.2.0 of vBulletin instead of 2.2.1 and it has changed a little in the forumdisplay.php file.
In forumdisplay.php (your backed up version) look for
Code:
$datecut="";
$stickyids="";
$stickycount=0;
if ($daysprune!=1000) {
$checkdate = time() - ($daysprune*86400);
$datecut='AND lastpost >= '.$checkdate;
}
and change this to:
Code:
$datecut="";
$stickyids="";
$stickycount=0;
if ($daysprune!=1000) {
if ($daysprune=='-2' or $bbuserinfo[daysprune]==-2) {
$datecut='AND lastpost >= '.$bbuserinfo[lastvisit];
} else {
$checkdate = time() - ($daysprune*86400);
$datecut='AND lastpost >= '.$checkdate;
}
}
and see if that fixes your it for you.
Parker