Quote Originally Posted by swguy View Post
Trouble is, you won't see it in PHP5. I got bit by a similar thing in Gift Wrap because I don't test in PHP4 anymore. Fix is straightforward: change

$ratio = $od_amount['total']/$order_total;

to

$ratio = 1;
if ($order_total != 0) {
$ratio = $od_amount['total']/$order_total;
}
Thank you so much your fix solved the problem. Just an FYI you definitely will see it in PHP5 as our store is based on PHP 5.2.8 and MYSQL 5.0.45. PHP5 is not immuned to this problem.

Thanks!