Summary:
Wrong parameter count for number_format()
Detailed Description:
Trying to checkout with PayPal:
Warning: Wrong parameter count for number_format() in
/var/www/xxx/modules/PaypalGateway/PaypalGateway.module.php on line 660
string number_format ( float $number , int $decimals , string $dec_point ,
string $thousands_sep )
You have omitted the second parameter. E. g.:
$parms['amount_'.$count] = number_format($amount, '.','');
should be
$parms['amount_'.$count] = number_format($amount, 2, '.','');
Tested on production install, works.