Index: trunk/extensions/DonationInterface/payflowpro_gateway/payflowpro_gateway.body.php |
— | — | @@ -982,6 +982,7 @@ |
983 | 983 | 'contribution_tracking_id' => $wgRequest->getText( 'contribution_tracking_id' ), |
984 | 984 | 'data_hash' => $wgRequest->getText( 'data_hash' ), |
985 | 985 | 'action' => $wgRequest->getText( 'action' ), |
| 986 | + 'gateway' => 'payflowpro', |
986 | 987 | ); |
987 | 988 | } else { |
988 | 989 | $data = array( |
— | — | @@ -1018,6 +1019,7 @@ |
1019 | 1020 | 'contribution_tracking_id' => $wgRequest->getText( 'contribution_tracking_id' ), |
1020 | 1021 | 'data_hash' => $wgRequest->getText( 'data_hash' ), |
1021 | 1022 | 'action' => $wgRequest->getText( 'action' ), |
| 1023 | + 'gateway' => 'payflowpro', // this may need to become dynamic in the future |
1022 | 1024 | ); |
1023 | 1025 | } |
1024 | 1026 | return $data; |
Index: trunk/extensions/DonationInterface/activemq_stomp/activemq_stomp.php |
— | — | @@ -163,7 +163,7 @@ |
164 | 164 | 'country' => $transaction['country_name'], |
165 | 165 | 'countryID' => $transaction['country_code'], |
166 | 166 | 'postal_code' => $transaction['zip'], |
167 | | - 'gateway' => 'payflowpro', |
| 167 | + 'gateway' => $transaction[ 'gateway' ], |
168 | 168 | 'gateway_txn_id' => $transaction['PNREF'], |
169 | 169 | 'response' => $transaction['RESPMSG'], |
170 | 170 | 'currency' => $transaction['currency'], |