Quote:
Originally Posted by King Kovifor
The problem in dispatcher.js isn't actually our code.
|
I know it is not I will fix it for you. I am out all day today but have solution tomorrow.
Here is the site working on so people can see it in action as another reference.
Forum Coding
Noticed for some reason the Spiders hack goes to negative guests sometimes so here is solution.
Just adding a conditional to it.
Same plugin as other post
FIND:
Code:
$numberguest = $numberguest - $nspiders;
$vbphrase['x_members_and_y_guests'] .= ' and '.$nspiders.' Spiders';
REPLACE:
Code:
$numberguest = $numberguest - $nspiders;
if ($numberguest<0){$numberguest=0;}
$vbphrase['x_members_and_y_guests'] .= ' and '.$nspiders.' Spiders';