Skip to content
This repository has been archived by the owner on Feb 6, 2020. It is now read-only.

Commit

Permalink
Merge branch 'release/1.2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed May 8, 2015
2 parents d5464ea + e762027 commit 26c573c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.2.1
* Fix fatal error due to undefined var $result.

## 1.2.0
* Added support for direct transaction request for iDEAL.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multisafepay-connect",
"version": "1.2.0",
"version": "1.2.1",
"description": "MultiSafepay Connect driver for the WordPress payment processing library.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/Gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public function start( Pronamic_Pay_PaymentDataInterface $data, Pronamic_Pay_Pay
$payment->set_transaction_id( $transaction->id );

if ( $transaction->payment_url ) {
$payment->set_action_url( $result->payment_url );
$payment->set_action_url( $transaction->payment_url );
}

if ( $response->gateway_info && $response->gateway_info->redirect_url ) {
Expand Down

0 comments on commit 26c573c

Please sign in to comment.