1
0
mirror of synced 2025-01-30 14:51:42 +03:00

Fixed undefined array key number in order history (#337)

This commit is contained in:
Chupocabra 2024-06-27 12:45:00 +03:00 committed by GitHub
parent 4ec5446a95
commit 69ef4e24c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 12 additions and 5 deletions

View File

@ -1,3 +1,6 @@
## 2024-06-27 4.7.9
* Fixed undefined array key number in order history
## 2024-06-26 4.7.8 ## 2024-06-26 4.7.8
* Added passing link field for abandoned baskets * Added passing link field for abandoned baskets

View File

@ -1 +1 @@
4.7.8 4.7.9

View File

@ -276,7 +276,8 @@ if (!class_exists('WC_Retailcrm_History')) :
$orderEditData = []; $orderEditData = [];
if ( if (
$order['number'] != $wcOrderNumber isset($order['number'])
&& $order['number'] != $wcOrderNumber
&& isset($this->retailcrmSettings['update_number']) && isset($this->retailcrmSettings['update_number'])
&& $this->retailcrmSettings['update_number'] == WC_Retailcrm_Base::YES && $this->retailcrmSettings['update_number'] == WC_Retailcrm_Base::YES
) { ) {

View File

@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.0 Requires PHP: 7.0
Requires at least: 5.3 Requires at least: 5.3
Tested up to: 6.5 Tested up to: 6.5
Stable tag: 4.7.8 Stable tag: 4.7.9
License: GPLv1 or later License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html License URI: http://www.gnu.org/licenses/gpl-1.0.html
@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i
== Changelog == == Changelog ==
= 4.7.9 =
* Fixed undefined array key number in order history
= 4.7.8 = = 4.7.8 =
* Added passing link field for abandoned baskets * Added passing link field for abandoned baskets

View File

@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com * Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC * Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/ * Author URI: http://retailcrm.pro/
* Version: 4.7.8 * Version: 4.7.9
* Tested up to: 6.5 * Tested up to: 6.5
* Requires Plugins: woocommerce * Requires Plugins: woocommerce
* WC requires at least: 5.4 * WC requires at least: 5.4

View File

@ -16,7 +16,7 @@
* *
* @link https://wordpress.org/plugins/woo-retailcrm/ * @link https://wordpress.org/plugins/woo-retailcrm/
* *
* @version 4.7.8 * @version 4.7.9
* *
* @package RetailCRM * @package RetailCRM
*/ */