Nevermind. I see the problem. The check which prevents duplicate sessions from showing is put outside of the registered user counter. The file is fixed, if you already installed this hack here is the code to move:
PHP Code:
if (!substr_count($activeusers_bare,"|||".$username."|||")) {
REPLACE it with this
PHP Code:
if (!substr_count($activeusers_bare,"|||".$loggedin['username']."|||")) {
and Move this just BELOW this line:
and ABOVE this line:
PHP Code:
$numberregistered++;