I think I've found the reason of your problem... please try to replace the line
$res = $db->super_query( "SELECT COUNT(*) as number FROM ".$cMain["dbPrefix"]."users WHERE joined = NOW()" );
(admin/index.php, around 60th line) by this one:
$res = $db->super_query( "SELECT COUNT(*) as number FROM ".$cMain["dbPrefix"]."users WHERE ".time()."-joined<86400" );