Plugin Directory

Changeset 2986770


Ignore:
Timestamp:
10/31/2023 11:35:54 AM (2 years ago)
Author:
bookvault
Message:

3.2.0
Housekeeping Fixes

Location:
bookvault
Files:
13 added
2 edited

Legend:

Unmodified
Added
Removed
  • bookvault/trunk/Bookvault.php

    r2986064 r2986770  
    33    * Plugin Name: Bookvault
    44    * Description: Bookvault plugin for Woocommerce
    5     * Version: 3.1.1
     5    * Version: 3.2.0
    66    * License:     GPL v3
    77    * Requires at least: 5.6
     
    345345function bvlt_handle_bulk_product_action() {
    346346    if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'bvlt_add_titles') {
    347         $selected_products = isset($_REQUEST['post']) ? sanitize_text_field($_REQUEST['post']) : array();
     347        $selected_products = isset($_REQUEST['post']) ? $_REQUEST['post'] : array();
    348348        $ids = "";
    349349        foreach ($selected_products as $product_id) {
    350350            // Perform actions on individual products
    351351            // You can access each product's data using $product_id
    352             $ids = $ids."&ids[]=".$product_id;
     352            $ids = $ids."&ids[]=".sanitize_text_field($product_id);
    353353        }
    354354               
  • bookvault/trunk/readme.txt

    r2986064 r2986770  
    55Tested up to: 6.3
    66Requires PHP: 5.6
    7 Stable tag: 3.1.1
     7Stable tag: 3.2.0
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    6060
    6161= 3.0.0 =
    62 * Adding new bulk add for titles
    63 * New UI to show where titles can be fulfilled from
    64 * Ability to edit products fulfilment locations
    65 * Ability to resend orders
    66 * Ability to batch resend orders
    67 * Fixed the stability of the portal
     62Adding new bulk add for titles
     63New UI to show where titles can be fulfilled from
     64Ability to edit products fulfilment locations
     65Ability to resend orders
     66Ability to batch resend orders
     67Fixed the stability of the portal
    6868
    6969= 3.1.0 =
    70 * Fixed bug with orders not being resent from the order page
     70Fixed bug with orders not being resent from the order page
    7171
    7272= 3.1.1 =
    73 * Various housekeeping fixes
     73Various housekeeping fixes
     74
     75= 3.2.0 =
     76Further housekeeping fixes
    7477
    7578== Changelog ==
     
    9497= 3.1.1 =
    9598* Various housekeeping fixes
     99
     100= 3.2.0 =
     101* Further housekeeping fixes
Note: See TracChangeset for help on using the changeset viewer.