Skip to content

Commit

Permalink
Release of 1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcivit committed Dec 11, 2024
1 parent b9bbbaa commit 8d68e40
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

***

## 1.7.1
Release date - Dec 11th, 2024

### Changed
+ PLGCSCS-158: Replace CS Cart native method fn_redirect, being used in redirecting users to checkout pages with PHP native header method, since it breaks the iDEAL 2.0 payment URL format.

***

## 1.7.0
Release date - Oct 9th, 2024

Expand Down
2 changes: 1 addition & 1 deletion src/app/payments/multisafepay.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@
$msp->transaction['items'] = $cart_items;
$msp->transaction['gateway'] = getGateway($processor_data['processor_params']['gateway']);
$msp->plugin_name = 'CS-Cart 4.x';
$msp->version = '1.7.0';
$msp->version = '1.7.1';
$msp->plugin['shop'] = 'CS-Cart';
$msp->plugin['shop_version'] = PRODUCT_VERSION;
$msp->plugin['plugin_version'] = '1.7.0';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,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.7.0';
$msp->version = '1.7.1';
$msp->plugin['shop'] = 'CS-Cart';
$msp->plugin['shop_version'] = PRODUCT_VERSION;
$msp->plugin['plugin_version'] = '1.7.0';
$msp->plugin['plugin_version'] = '1.7.1';
$msp->plugin['partner'] = '';
$msp->plugin['shop_root_url'] = Registry::get('config.current_location');

Expand Down

0 comments on commit 8d68e40

Please sign in to comment.