BUG:
With "Hide Negative Posts" enabled and "Hide Negative Posts - Count" > 0 all unvoted posts are hidden.
The cause:
Code:
Line 954 in xml:
if($vbulletin->options['helpans_hidelow'] AND (($post['goodrank'] - $post['totalrank']) < $vbulletin->options['helpans_hidelownum']) ){
The solution:
Change the above line to:
Code:
if($vbulletin->options['helpans_hidelow'] AND (($post['totalrank'] - $post['goodrank']) > $vbulletin->options['helpans_hidelownum']) ){