Skip to content

Commit

Permalink
Fix bluepay_redirect.php when releasing funds in the admin.
Browse files Browse the repository at this point in the history
Close #3336
  • Loading branch information
jamesallsup committed Sep 12, 2015
1 parent 98ffb5b commit 169fc38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion upload/admin/model/payment/bluepay_redirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function release($order_id, $amount) {
$release_data = array();

$release_data['MERCHANT'] = $this->config->get('bluepay_redirect_account_id');
$release_data["TRANSACTION_TYPE"] = 'VOID';
$release_data["TRANSACTION_TYPE"] = 'CAPTURE';
$release_data["MODE"] = strtoupper($this->config->get('bluepay_redirect_test'));
$release_data["RRNO"] = $bluepay_redirect_order['transaction_id'];

Expand Down

0 comments on commit 169fc38

Please sign in to comment.