Index: trunk/extensions/DonationInterface/globalcollect_gateway/globalcollect.adapter.php |
— | — | @@ -31,6 +31,7 @@ |
32 | 32 | 'RETURNURL' => 'returnto', //TODO: Fund out where the returnto URL is supposed to be coming from. |
33 | 33 | 'IPADDRESS' => 'user_ip', //TODO: Not sure if this should be OUR ip, or the user's ip. Hurm. |
34 | 34 | 'PAYMENTPRODUCTID' => 'card_type', |
| 35 | + 'ISSUERID' => 'issuer_id', |
35 | 36 | 'CVV' => 'cvv', |
36 | 37 | 'EXPIRYDATE' => 'expiration', |
37 | 38 | 'CREDITCARDNUMBER' => 'card_num', |
— | — | @@ -653,7 +654,7 @@ |
654 | 655 | case 'rtbt_ideal': |
655 | 656 | $this->postdata['payment_product'] = 809; |
656 | 657 | $this->var_map['PAYMENTPRODUCTID'] = 'payment_product'; |
657 | | - $this->var_map['ISSUERID'] = 'issuer'; |
| 658 | + $this->var_map['ISSUERID'] = 'issuer_id'; |
658 | 659 | break; |
659 | 660 | |
660 | 661 | case 'rtbt_enets': |
— | — | @@ -669,7 +670,7 @@ |
670 | 671 | case 'rtbt_eps': |
671 | 672 | $this->postdata['payment_product'] = 856; |
672 | 673 | $this->var_map['PAYMENTPRODUCTID'] = 'payment_product'; |
673 | | - //$this->var_map['ISSUERID'] = 'issuer'; |
| 674 | + $this->var_map['ISSUERID'] = 'issuer_id'; |
674 | 675 | break; |
675 | 676 | } |
676 | 677 | } |