One small bug I noticed ... the Active users also counts the Non-Active in the total number.
I dunno if it is just me.. so someone else who installed this .. add up the 3 numbers (0-posters, Active + Non active) and see if it's the same as your total registered members.
I tried changing the
PHP Code:
$activemembers=$numbermembers-$nonposters;
to
PHP Code:
$activemembers=$numbermembers-$nonposters-$inactive;
or
$activemembers=$numbermembers-($nonposters+$inactive);
but it still didn't give me the right number for Active - inactive. All the original code is doing i removing the 0-posters from the total registered to get active.. so if a board has a lot of inactive members that have at least posted one.. you'll get some numbers that add up to a lot higher than total registered.
Again.. it's just a small bug.. but would be great to see a fix.