Quote:
Originally Posted by Andreas
@dxguru
I don't think I changed anything to the showthread plugins.
What's on line 78?
|
It actually turned out to be in the Show Events in Showthread plugin
Original code
PHP Code:
$outcome['odds_decimal'] = (sprintf("%0.2f", ((float)$outcome['odds_against']/(float)$outcome['odds_for'])))+1;
although I added the (...)+1
Changed this to
PHP Code:
if ((float)$outcome['odds_for'] > 0) {
$outcome['odds_decimal'] = (sprintf("%0.2f", ((float)$outcome['odds_against']/(float)$outcome['odds_for'])))+1;
} else {
$outcome['odds_decimal'] = 0;
}
and it seems to be working