Index: trunk/extensions/DonationInterface/gateway_forms/Form.php |
— | — | @@ -359,8 +359,11 @@ |
360 | 360 | 'email-opt' => $this->form_data['email-opt'], |
361 | 361 | 'size' => $this->form_data['size'], |
362 | 362 | 'premium_language' => $this->form_data['premium_language'], |
363 | | - 'process' => isset( $this->form_data['process'] ) ? $this->form_data['process'] : 'CreditCard', |
364 | | - 'payment_method' => 'processed', |
| 363 | + // process has been disabled - may no longer be needed. |
| 364 | + //'process' => isset( $this->form_data['process'] ) ? $this->form_data['process'] : 'CreditCard', |
| 365 | + // payment_method is no longer set to: processed |
| 366 | + 'payment_method' => isset( $this->form_data['payment_method'] ) ? $this->form_data['payment_method'] : '', |
| 367 | + 'payment_submethod' => isset( $this->form_data['payment_submethod'] ) ? $this->form_data['payment_submethod'] : '', |
365 | 368 | 'token' => $this->form_data['token'], |
366 | 369 | 'order_id' => $this->form_data['order_id'], |
367 | 370 | 'i_order_id' => $this->form_data['i_order_id'], |
— | — | @@ -370,7 +373,6 @@ |
371 | 374 | 'action' => $this->form_data['action'], |
372 | 375 | 'owa_session' => $this->form_data['owa_session'], |
373 | 376 | 'owa_ref' => $this->form_data['owa_ref'], |
374 | | - 'transaction_type' => isset( $this->form_data['transaction_type'] ) ? $this->form_data['transaction_type'] : '', |
375 | 377 | ); |
376 | 378 | } |
377 | 379 | |