I get the following error when redirected to the webmoney website.
2 payment amount (60861.858) not corrected
This error come when the payment amount is more than two digit after the decimal point in this case three(858). When they are two that is fine.
I also tried to use the function payment_format before redirection and modified the amount to something like 60, 861.85. It redirects ok but the amount after the comma is truncated which means the amount becomes just 60.
Comments
Comment #1
wisdom commentedMaking the following slight change around line 136 in the webmoney_form function help to resolve the issue.
$purses[$template->purse]=number_format($t->gross,2) * $template->rate." ".$template->type;
number_format is used for the gross amount. Alternate and more elegant solution is appreciated.
Comment #2
gor commentedThe issue has been fixed. Please check it.
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.