It works fine for me on vB 2.3.0. I'd prefer if self views (viewing one's own profile) didn't count though.
EDIT: Here, I did it myself. If you don't want people to raise their view count by viewing their own profile, in member.php replace
Code:
// Update the DB with new count
$updateviews=$DB_site->query("UPDATE user SET profileview=$userinfo[profileview] WHERE userid=$userinfo[userid]");
with
Code:
// Update the DB with new count
if($bbuserinfo[userid] != $userid) {
$updateviews=$DB_site->query("UPDATE user SET profileview=$userinfo[profileview] WHERE userid=$userinfo[userid]");
}