Skip to content

Commit

Permalink
Release of 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcivit authored Dec 22, 2022
1 parent 10ddbfc commit eb73685
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 1.6.1
Release date - Dec 22nd, 2022

### Fixed
+ PLGCSCS-140: Fix the options within the select field for Ideal issuers
+ PLGCSCS-136: Fix miscalculations of the shipping item when this one is not including taxes
+ PLGCSCS-128: Fix missing merchant_item_id on discounts

***

## 1.6.0
Release date - Jun 18th, 2021

Expand Down
4 changes: 2 additions & 2 deletions src/app/payments/multisafepay.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,10 +291,10 @@
$msp->transaction['items'] = $cart_items;
$msp->transaction['gateway'] = getGateway($processor_data['processor_params']['gateway']);
$msp->plugin_name = 'CS-Cart 4.x';
$msp->version = '1.6.0';
$msp->version = '1.6.1';
$msp->plugin['shop'] = 'CS-Cart';
$msp->plugin['shop_version'] = PRODUCT_VERSION;
$msp->plugin['plugin_version'] = '1.6.0';
$msp->plugin['plugin_version'] = '1.6.1';
$msp->plugin['partner'] = '';
$msp->plugin['shop_root_url'] = Registry::get('config.current_location');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,10 @@ function fn_multisafepay_set_fastcheckout($payment_id, $order_id = 0, $order_inf
$msp->transaction['description'] = 'Order #' . $msp->transaction['id'];
$msp->transaction['items'] = $cart_items;
$msp->plugin_name = 'CS-Cart 4.x';
$msp->version = '1.6.0';

$msp->version = '1.6.1';
$msp->plugin['shop'] = 'CS-Cart';
$msp->plugin['shop_version'] = PRODUCT_VERSION;
$msp->plugin['plugin_version'] = '1.6.0';
$msp->plugin['plugin_version'] = '1.6.1';
$msp->plugin['partner'] = '';
$msp->plugin['shop_root_url'] = Registry::get('config.current_location');

Expand Down

0 comments on commit eb73685

Please sign in to comment.