Quote:
Originally Posted by Ted S
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']) ){
|
Actually close but got it to work by doing this:
Code:
if($this->registry->options['helpans_hidelow'] AND (($post['goodrank'] - $post['badrank']) < $this->registry->options['helpans_hidelownum']) ){
Gracias, thank you...that'll tide me over until the next update!