Index: branches/fundraising/extensions/DonationInterface/gateway_common/DonationData.php |
— | — | @@ -111,6 +111,7 @@ |
112 | 112 | 'gateway' => 'payflowpro', |
113 | 113 | 'owa_session' => $wgRequest->getText( 'owa_session', null ), |
114 | 114 | 'owa_ref' => 'http://localhost/defaultTestData', |
| 115 | + 'transaction_type' => '', // Used by GlobalCollect for payment types |
115 | 116 | ); |
116 | 117 | } |
117 | 118 | } |
— | — | @@ -172,6 +173,7 @@ |
173 | 174 | 'gateway' => $wgRequest->getText( 'gateway' ), //likely to be reset shortly by setGateway(); |
174 | 175 | 'owa_session' => $wgRequest->getText( 'owa_session', null ), |
175 | 176 | 'owa_ref' => $wgRequest->getText( 'owa_ref', null ), |
| 177 | + 'transaction_type' => $wgRequest->getText( 'transaction_type', null ), // Used by GlobalCollect for payment types |
176 | 178 | ); |
177 | 179 | if ( !$wgRequest->wasPosted() ) { |
178 | 180 | $this->setVal( 'posted', false ); |
— | — | @@ -235,6 +237,7 @@ |
236 | 238 | 'gateway' => $data['gateway'], //likely to be reset shortly by setGateway(); |
237 | 239 | 'owa_session' => $data['owa_session'], |
238 | 240 | 'owa_ref' => $data['owa_ref'], |
| 241 | + 'transaction_type' => $data['transaction_type'], // Used by GlobalCollect for payment types |
239 | 242 | ); |
240 | 243 | } |
241 | 244 | |