Changeset 3174370
- Timestamp:
- 10/23/2024 01:19:26 PM (17 months ago)
- Location:
- woo-parcel-pro
- Files:
-
- 8 edited
- 1 copied
-
tags/1.9.0 (copied) (copied from woo-parcel-pro/trunk)
-
tags/1.9.0/admin/class-parcelpro-admin.php (modified) (1 diff)
-
tags/1.9.0/changelog.md (modified) (1 diff)
-
tags/1.9.0/composer.json (modified) (1 diff)
-
tags/1.9.0/woocommerce-parcelpro.php (modified) (2 diffs)
-
trunk/admin/class-parcelpro-admin.php (modified) (1 diff)
-
trunk/changelog.md (modified) (1 diff)
-
trunk/composer.json (modified) (1 diff)
-
trunk/woocommerce-parcelpro.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woo-parcel-pro/tags/1.9.0/admin/class-parcelpro-admin.php
r3102312 r3174370 298 298 299 299 if (!isset($_REQUEST['_wpnonce'])) { 300 wp_die( "No nonce set for action: $action ($nonceAction)");300 wp_die(esc_html("No nonce set for action: $action ($nonceAction)")); 301 301 } 302 302 303 303 if (!wp_verify_nonce($_REQUEST['_wpnonce'], $nonceAction)) { 304 wp_die( "Invalid nonce for action: $action ($nonceAction)");304 wp_die(esc_html("Invalid nonce for action: $action ($nonceAction)")); 305 305 } 306 306 -
woo-parcel-pro/tags/1.9.0/changelog.md
r3102312 r3174370 1 1 # Changelog 2 3 ## 1.9.0 - 2024-10-23 4 * Fix XSS vulnerability in nonce error message 2 5 3 6 ## 1.8.4 - 2024-06-13 -
woo-parcel-pro/tags/1.9.0/composer.json
r3102312 r3174370 3 3 "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.", 4 4 "type": "wordpress-plugin", 5 "version": "1. 8.4",5 "version": "1.9.0", 6 6 "require": { 7 7 "php": ">=7.1", -
woo-parcel-pro/tags/1.9.0/woocommerce-parcelpro.php
r3102312 r3174370 14 14 * 15 15 * @wordpress-plugin 16 * Plugin Name: WooCommerce Parcel Pro16 * Plugin Name: Parcel Pro for WooCommerce 17 17 * Plugin URI: https://www.parcelpro.nl/koppelingen/woocommerce/ 18 18 * 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. 8.419 * Version: 1.9.0 20 20 * Author: Parcel Pro 21 21 * Author URI: https://parcelpro.nl/ 22 22 * License: GPL-3.0+ 23 23 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt 24 * Text Domain: woocommerce_parcelpro 25 * Domain Path: /languages 24 * Text Domain: woo-parcel-pro 26 25 */ 27 26 … … 31 30 32 31 define('PARCELPRO_NAME', 'WooCommerce Parcel Pro'); 33 define('PARCELPRO_VERSION', '1. 8.4');32 define('PARCELPRO_VERSION', '1.9.0'); 34 33 define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3'); 35 34 define('PARCELPRO_REQUIRED_WP_VERSION', '3.1'); -
woo-parcel-pro/trunk/admin/class-parcelpro-admin.php
r3102312 r3174370 298 298 299 299 if (!isset($_REQUEST['_wpnonce'])) { 300 wp_die( "No nonce set for action: $action ($nonceAction)");300 wp_die(esc_html("No nonce set for action: $action ($nonceAction)")); 301 301 } 302 302 303 303 if (!wp_verify_nonce($_REQUEST['_wpnonce'], $nonceAction)) { 304 wp_die( "Invalid nonce for action: $action ($nonceAction)");304 wp_die(esc_html("Invalid nonce for action: $action ($nonceAction)")); 305 305 } 306 306 -
woo-parcel-pro/trunk/changelog.md
r3102312 r3174370 1 1 # Changelog 2 3 ## 1.9.0 - 2024-10-23 4 * Fix XSS vulnerability in nonce error message 2 5 3 6 ## 1.8.4 - 2024-06-13 -
woo-parcel-pro/trunk/composer.json
r3102312 r3174370 3 3 "description": "Verzendmodule om gemakkelijk orders in te laden in het verzendsysteem van Parcel Pro.", 4 4 "type": "wordpress-plugin", 5 "version": "1. 8.4",5 "version": "1.9.0", 6 6 "require": { 7 7 "php": ">=7.1", -
woo-parcel-pro/trunk/woocommerce-parcelpro.php
r3102312 r3174370 14 14 * 15 15 * @wordpress-plugin 16 * Plugin Name: WooCommerce Parcel Pro16 * Plugin Name: Parcel Pro for WooCommerce 17 17 * Plugin URI: https://www.parcelpro.nl/koppelingen/woocommerce/ 18 18 * 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. 8.419 * Version: 1.9.0 20 20 * Author: Parcel Pro 21 21 * Author URI: https://parcelpro.nl/ 22 22 * License: GPL-3.0+ 23 23 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt 24 * Text Domain: woocommerce_parcelpro 25 * Domain Path: /languages 24 * Text Domain: woo-parcel-pro 26 25 */ 27 26 … … 31 30 32 31 define('PARCELPRO_NAME', 'WooCommerce Parcel Pro'); 33 define('PARCELPRO_VERSION', '1. 8.4');32 define('PARCELPRO_VERSION', '1.9.0'); 34 33 define('PARCELPRO_REQUIRED_PHP_VERSION', '5.3'); 35 34 define('PARCELPRO_REQUIRED_WP_VERSION', '3.1');
Note: See TracChangeset
for help on using the changeset viewer.