Quote:
Originally Posted by voteforbird
These stats are not accurate. I'm getting a 93% increase in threads, a 95% increase in posts and a 1% increase in members. This is on a 355,000-post board. The 90 numbers are waaay too high. Activity is steady. *disabled*
BTW I assume encryption's stats are incorrect, as well.
|
Very simple fix. Change the calculations used in the admincp settings as follows:
Before:
Code:
round(($current / $avg) * 100)
After:
Code:
round(($current / $avg) * 100) - 100
It's the difference between considering 100% to mean 'dead on track' or '0%' to mean 'dead on track'. That's why I've exposed the calculations in this release. The minute I change it to be one way, someone will want it the other way.