Changeset 2986770
- Timestamp:
- 10/31/2023 11:35:54 AM (2 years ago)
- Location:
- bookvault
- Files:
-
- 13 added
- 2 edited
-
tags/3.2.0 (added)
-
tags/3.2.0/Bookvault.php (added)
-
tags/3.2.0/assets (added)
-
tags/3.2.0/assets/css (added)
-
tags/3.2.0/assets/css/bv-styles.css (added)
-
tags/3.2.0/assets/img (added)
-
tags/3.2.0/assets/img/bv-logo-long.png (added)
-
tags/3.2.0/assets/img/bv-logo.png (added)
-
tags/3.2.0/core (added)
-
tags/3.2.0/core/admin (added)
-
tags/3.2.0/core/admin/admin.php (added)
-
tags/3.2.0/readme.txt (added)
-
tags/3.2.0/uninstall.php (added)
-
trunk/Bookvault.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bookvault/trunk/Bookvault.php
r2986064 r2986770 3 3 * Plugin Name: Bookvault 4 4 * Description: Bookvault plugin for Woocommerce 5 * Version: 3. 1.15 * Version: 3.2.0 6 6 * License: GPL v3 7 7 * Requires at least: 5.6 … … 345 345 function bvlt_handle_bulk_product_action() { 346 346 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(); 348 348 $ids = ""; 349 349 foreach ($selected_products as $product_id) { 350 350 // Perform actions on individual products 351 351 // 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); 353 353 } 354 354 -
bookvault/trunk/readme.txt
r2986064 r2986770 5 5 Tested up to: 6.3 6 6 Requires PHP: 5.6 7 Stable tag: 3. 1.17 Stable tag: 3.2.0 8 8 License: GPLv3 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 60 60 61 61 = 3.0.0 = 62 *Adding new bulk add for titles63 *New UI to show where titles can be fulfilled from64 *Ability to edit products fulfilment locations65 *Ability to resend orders66 *Ability to batch resend orders67 *Fixed the stability of the portal62 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 68 68 69 69 = 3.1.0 = 70 *Fixed bug with orders not being resent from the order page70 Fixed bug with orders not being resent from the order page 71 71 72 72 = 3.1.1 = 73 * Various housekeeping fixes 73 Various housekeeping fixes 74 75 = 3.2.0 = 76 Further housekeeping fixes 74 77 75 78 == Changelog == … … 94 97 = 3.1.1 = 95 98 * Various housekeeping fixes 99 100 = 3.2.0 = 101 * Further housekeeping fixes
Note: See TracChangeset
for help on using the changeset viewer.