Quote:
Originally Posted by motd2
MySQL problem )
vbsoccer.php
find twice this code
Code:
CAST(`bet_home`-`bet_away` AS SIGNED)
replace twice this code
Code:
CAST(`bet_home` AS SIGNED) - CAST(`bet_away` AS SIGNED)
next
includes/functions_vbsoccer.php
find
Code:
CAST(bet_home - bet_away AS SIGNED)
replace
Code:
CAST(bet_home AS SIGNED) - CAST(bet_away AS SIGNED)
|
Works a treat, thank you so much.