Index: branches/fundraising/extensions/DonationInterface/globalcollect_gateway/globalcollect.adapter.php |
— | — | @@ -293,7 +293,8 @@ |
294 | 294 | |
295 | 295 | function processResponse( $response ) { |
296 | 296 | //set the transaction result message |
297 | | - $this->setTransactionResult( "Response Status: " . $response['STATUSID'], 'txn_message' ); //TODO: Translate for GC. |
| 297 | + $responseStatus = isset( $response['STATUSID'] ) ? $response['STATUSID'] : ''; |
| 298 | + $this->setTransactionResult( "Response Status: " . $responseStatus, 'txn_message' ); //TODO: Translate for GC. |
298 | 299 | $this->setTransactionResult( $this->getData( 'order_id' ), 'gateway_txn_id' ); |
299 | 300 | } |
300 | 301 | |