Plugin Directory

Changeset 3308686


Ignore:
Timestamp:
06/09/2025 07:47:34 PM (10 months ago)
Author:
ascendedcrow
Message:

1.0.32.3

1) Fixed deprecated warning related to passing null to preg_replace() in WordPress kses.php

Location:
shop-2-api
Files:
63 added
3 edited

Legend:

Unmodified
Added
Removed
  • shop-2-api/trunk/includes/Api/Shop2ApiConnect.php

    r3308682 r3308686  
    415415            );
    416416        }
    417         return null;
     417        // Return an empty array instead of null to avoid deprecated warnings with preg_replace()
     418        return array();
    418419    }
    419420
  • shop-2-api/trunk/readme.txt

    r3308685 r3308686  
    33Plugin URI: https://wordpress.org/plugins/shop-2-api/
    44Tags: WooCommerce, Bol
    5 Stable Tag: 1.0.32.2
     5Stable Tag: 1.0.32.3
    66Requires at least: 5.0
    77Requires PHP: 7.2
    8 Tested up to: 6.7
     8Tested up to: 6.8
    99Author: Adriaan Coetzee
    1010Author URI: https://shop2API.com/
     
    95951) URL Update
    9696
     97= 1.0.32.3 =
     981) Fixed deprecated warning related to passing null to preg_replace() in WordPress kses.php
     99
    97100== Instructions ==
    981011) After installing Shop2Api, a new menu item will be available in your WordPress installation, you can continue and click on it and enter your e-mail address.
  • shop-2-api/trunk/shop-2-api.php

    r3308682 r3308686  
    55Plugin URI: https://wordpress.org/plugins/shop-2-api/
    66Description: The plugin Shop2Api will sync products between e-Commerce platforms. The current supported e-Commerce platforms are WooCommerce to Bol.com, and we are working on Amazon, Shopify and others.  We added a koopblok service so that you can check if you lower your price can you get koopblok.
    7 Version: 1.0.32.2
     7Version: 1.0.32.3
    88Requires at least: 5.0
    99Requires PHP:      7.2
     
    1212License: GPLv2 or later
    1313Text Domain: shop2API
    14 Stable tag: 1.0.32.2
     14Stable tag: 1.0.32.3
    1515Short Description: Sync products between e-Commerce platforms like WooCommerce, Bol.com.
    1616 */
     
    3636define('SHOP2API_PLUGIN_URL', plugin_dir_url( __FILE__ ));
    3737define('SHOP2API_PLUGIN', plugin_basename( __FILE__ ));
    38 define ('VERSION', '1.0.31.2');
     38define ('VERSION', '1.0.32.3');
    3939
    4040// Register items in the project.
Note: See TracChangeset for help on using the changeset viewer.