Plugin Directory

Changeset 3000682


Ignore:
Timestamp:
11/23/2023 12:19:51 PM (2 years ago)
Author:
parcelpro
Message:

Update to version 1.6.16 from GitHub

Location:
woo-parcel-pro
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woo-parcel-pro/tags/1.6.16/admin/class-parcelpro-admin.php

    r3000582 r3000682  
    286286        if (str_starts_with($nonceAction, 'parcelpro-bulk-')) {
    287287            $nonceAction = 'bulk-orders';
     288
     289            // Check if WooCommerce stores orders as post or order objects.
     290            // If we have a post_type, that means it's a post, so the action type is different.
     291            if (isset($_REQUEST['post_type'])) {
     292                $nonceAction = 'bulk-posts';
     293            }
    288294        }
    289295
  • woo-parcel-pro/tags/1.6.16/changelog.md

    r3000582 r3000682  
    11# Changelog
     2
     3## 1.6.16 - 2023-11-22
     4* Fix bulk order actions for WC 7 and legacy order data storage
    25
    36## 1.6.15 - 2023-11-22
  • woo-parcel-pro/tags/1.6.16/composer.json

    r3000582 r3000682  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.6.15",
     5  "version": "1.6.16",
    66  "require": {
    77    "php": ">=7.1"
  • woo-parcel-pro/tags/1.6.16/woocommerce-parcelpro.php

    r3000582 r3000682  
    1717 * Plugin URI:      https://www.parcelpro.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Parcel Pro.
    19  * Version:         1.6.15
     19 * Version:         1.6.16
    2020 * Author:          Parcel Pro
    2121 * Author URI:      https://parcelpro.nl/
     
    3131
    3232define('PARCELPRO_NAME', 'WooCommerce Parcel Pro');
    33 define('PARCELPRO_VERSION', '1.6.15');
     33define('PARCELPRO_VERSION', '1.6.16');
    3434define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3535define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
  • woo-parcel-pro/trunk/admin/class-parcelpro-admin.php

    r3000582 r3000682  
    286286        if (str_starts_with($nonceAction, 'parcelpro-bulk-')) {
    287287            $nonceAction = 'bulk-orders';
     288
     289            // Check if WooCommerce stores orders as post or order objects.
     290            // If we have a post_type, that means it's a post, so the action type is different.
     291            if (isset($_REQUEST['post_type'])) {
     292                $nonceAction = 'bulk-posts';
     293            }
    288294        }
    289295
  • woo-parcel-pro/trunk/changelog.md

    r3000582 r3000682  
    11# Changelog
     2
     3## 1.6.16 - 2023-11-22
     4* Fix bulk order actions for WC 7 and legacy order data storage
    25
    36## 1.6.15 - 2023-11-22
  • woo-parcel-pro/trunk/composer.json

    r3000582 r3000682  
    33  "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.",
    44  "type": "wordpress-plugin",
    5   "version": "1.6.15",
     5  "version": "1.6.16",
    66  "require": {
    77    "php": ">=7.1"
  • woo-parcel-pro/trunk/woocommerce-parcelpro.php

    r3000582 r3000682  
    1717 * Plugin URI:      https://www.parcelpro.nl/koppelingen/woocommerce/
    1818 * Description:     Geef klanten de mogelijkheid om hun pakket af te halen bij een afhaalpunt in de buurt. Daarnaast exporteert de plug-in uw zendingen direct in het verzendsysteem van Parcel Pro.
    19  * Version:         1.6.15
     19 * Version:         1.6.16
    2020 * Author:          Parcel Pro
    2121 * Author URI:      https://parcelpro.nl/
     
    3131
    3232define('PARCELPRO_NAME', 'WooCommerce Parcel Pro');
    33 define('PARCELPRO_VERSION', '1.6.15');
     33define('PARCELPRO_VERSION', '1.6.16');
    3434define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3');
    3535define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
Note: See TracChangeset for help on using the changeset viewer.