Quote:
Originally Posted by bfdzio
Ted - Any update on when it will be able to collapse posts based on the NET rating? Like I've said before, the current system is good but causes problems on active forums where posts that are read by a lot of people may get a +40/-10 and be collapsed. I can't set that to collapse at -10 though because posts on less read forums may be at +5/-6 and not collapse or just +0/-6 and not collapse. Having it collapse on just a net total would be great.
|
Before I can add this I need to clean up the overall script as there's just too many stinking options.
Code:
if($this->registry->options['helpans_hidelow'] AND (($post['goodrank'] - $post['totalrank']) < $this->registry->options['helpans_hidelownum']) ){
Becomes something like...
Code:
if($this->registry->options['helpans_hidelow'] AND (($post['totalrank'] - $post['goorank']) < $this->registry->options['helpans_hidelownum']) ){