Summary:
Error in transaction during subscription
Detailed Description:
Hello,
I think I've found a problem when using this module with SelfRegistration for
paid subscriptions.
In action.ipn.php, the amount is not properly saved. In the "case" :
"subscr_payment", I replaced :
$transaction = new cgpgb_async_transaction($order_id,$_POST['payment_gross']);
with :
$transaction = new cgpgb_async_transaction($order_id,$_POST['mc_gross']);
And then, the amount is OK, and the subscription works - The temporary user is
correctly transfered from the SelfRegistration module to FEU
Hope this will help..