Skip to content

Commit

Permalink
Release of 3.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
danielcivit authored Jun 17, 2021
2 parents 0d4fac4 + 1ddfb66 commit bec74c0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

***

## 3.10.4
Release date: Jun, 17th 2021

### Fixed
+ PLGOPNS-410: Disable customer email notification, when MultiSafepay transaction status received in notification, match with the order status 'Do not change the order status' in the extension setting.

***

## 3.10.3
Release date: May, 26th 2021

Expand Down
2 changes: 1 addition & 1 deletion src/catalog/controller/extension/payment/multisafepay.php
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ public function callback() {

if (!$order_status_id && $order_status_id != $current_order_status && $this->config->get($this->key_prefix . 'multisafepay_debug_mode')) {
$comment = sprintf($this->language->get('text_comment_callback'), $order_id, $timestamp, $status, $psp_id);
$this->model_checkout_order->addOrderHistory($order_id, $current_order_status, $comment, true);
$this->model_checkout_order->addOrderHistory($order_id, $current_order_status, $comment, false);
$this->log->write('Callback received for Order ID ' . $order_id . ', has not been process.');
}

Expand Down
2 changes: 1 addition & 1 deletion src/catalog/controller/payment/multisafepay.php
Original file line number Diff line number Diff line change
Expand Up @@ -784,7 +784,7 @@ public function callback() {

if (!$order_status_id && $order_status_id != $current_order_status && $this->config->get($this->key_prefix . 'multisafepay_debug_mode')) {
$comment = sprintf($this->language->get('text_comment_callback'), $order_id, $timestamp, $status, $psp_id);
$this->model_checkout_order->addOrderHistory($order_id, $current_order_status, $comment, true);
$this->model_checkout_order->addOrderHistory($order_id, $current_order_status, $comment, false);
$this->log->write('Callback received for Order ID ' . $order_id . ', has not been process.');
}

Expand Down
2 changes: 1 addition & 1 deletion src/system/library/multisafepay.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function __get($name) {
*
*/
public function getPluginVersion() {
$plugin_version = '3.10.3';
$plugin_version = '3.10.4';
return $plugin_version;
}

Expand Down

0 comments on commit bec74c0

Please sign in to comment.