Sorry missed the second line, since it is (almost?) the same as the line to change in member.php, just above that.
Now this is interesting, i checked it in a 3.0.7 version and that whole if statement is gone. In the memberlist the 'Last Visit' date is always shown.
3.0.3:
PHP Code:
if (!$userinfo['invisible'] OR $permissions['genericpermissions'] & CANSEEHIDDEN OR $userinfo['userid'] == $bbuserinfo['userid'])
{
$userinfo['lastvisit'] = vbdate($vboptions['dateformat'], $userinfo['lastactivity'], true);
}
else
{
$userinfo['lastvisit'] = ' ';
}
In 3.0.7:
PHP Code:
$userinfo['lastvisit'] = vbdate($vboptions['dateformat'], $userinfo['lastvisittime'], true);
This means that the last visit date is always shown, even if a member hsa choosen to stay invisible. Not sure if this is a bug in 3.0.7 or not. Looks like it is done on purpose.
If you want, you can replace the 3.0.6 code with the 3.0.3.