Changeset 2680936
- Timestamp:
- 02/17/2022 04:14:16 PM (4 years ago)
- Location:
- woocommerce-store-toolkit/trunk
- Files:
-
- 3 edited
-
includes/functions.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
store-toolkit.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-store-toolkit/trunk/includes/functions.php
r2532824 r2680936 529 529 /* Start of: Storefront */ 530 530 531 function woo_st_autocomplete_order_status( $order_id = 0, $posted ) {531 function woo_st_autocomplete_order_status( $order_id = 0, $posted = false ) { 532 532 533 533 if( !empty( $order_id ) ) { -
woocommerce-store-toolkit/trunk/readme.txt
r2654537 r2680936 6 6 Requires at least: 2.9.2 7 7 Tested up to: 5.8.2 8 Stable tag: 2.3. 28 Stable tag: 2.3.3 9 9 License: GPLv2 or later 10 10 … … 117 117 == Support == 118 118 119 If you have any problems, questions or suggestions please join the members discussion on myWooCommerce dedicated forum.119 If you have any problems, questions or suggestions please join the members discussion on our WooCommerce dedicated forum. 120 120 121 121 http://www.visser.com.au/woocommerce/forums/ … … 128 128 129 129 == Changelog == 130 131 = 2.3.3 = 132 * Fixed PHP 8 issue in Product nuke (thanks @webshaun) 133 * Fixed PHP 8 deprecation notice (thanks @martin_bailey) 130 134 131 135 = 2.3.2 = -
woocommerce-store-toolkit/trunk/store-toolkit.php
r2654503 r2680936 4 4 Plugin URI: https://wordpress.org/plugins/woocommerce-store-toolkit/ 5 5 Description: Store Toolkit includes a growing set of commonly-used WooCommerce administration tools aimed at web developers and store maintainers. 6 Version: 2.3. 26 Version: 2.3.3 7 7 Author: Visser Labs 8 8 Author URI: http://www.visser.com.au/about/ … … 13 13 14 14 WC requires at least: 2.3 15 WC tested up to: 5.9.015 WC tested up to: 6.2.0 16 16 */ 17 17 … … 90 90 if( isset( $_POST['woo_st_products'] ) ) { 91 91 $product_status = ( isset( $_POST['woo_st_products_status'] ) ? array_map( 'sanitize_text_field', $_POST['woo_st_products_status'] ) : false ); 92 $args = array( 93 'product_status' => array_values( $product_status ) 94 ); 92 $args = array(); 93 if( !empty( $product_status ) ) { 94 $args['product_status'] = array_values( $product_status ); 95 } 95 96 $response = woo_st_clear_dataset( 'product', $args ); 96 97 }
Note: See TracChangeset
for help on using the changeset viewer.