Changeset 3252059
- Timestamp:
- 03/07/2025 09:13:53 AM (13 months ago)
- Location:
- crowdfunding-for-woocommerce/trunk
- Files:
-
- 3 edited
-
crowdfunding-for-woocommerce.php (modified) (3 diffs)
-
includes/shortcodes/class-wc-crowdfunding-shortcodes-products-add-form.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
crowdfunding-for-woocommerce/trunk/crowdfunding-for-woocommerce.php
r3143946 r3252059 4 4 Plugin URI: https://wpwham.com/products/crowdfunding-for-woocommerce/ 5 5 Description: Crowdfunding products for WooCommerce. 6 Version: 3.1.1 26 Version: 3.1.13 7 7 Author: WP Wham 8 8 Author URI: https://wpwham.com/ 9 9 Text Domain: crowdfunding-for-woocommerce 10 10 Domain Path: /langs 11 Copyright: © 2018-202 4WP Wham. All rights reserved.11 Copyright: © 2018-2025 WP Wham. All rights reserved. 12 12 License: GNU General Public License v3.0 13 13 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 45 45 * 46 46 * @class Alg_Woocommerce_Crowdfunding 47 * @version 3.1.1 247 * @version 3.1.13 48 48 */ 49 49 final class Alg_Woocommerce_Crowdfunding { … … 58 58 * @since 2.3.0 59 59 */ 60 public $version = '3.1.1 2';60 public $version = '3.1.13'; 61 61 62 62 /** -
crowdfunding-for-woocommerce/trunk/includes/shortcodes/class-wc-crowdfunding-shortcodes-products-add-form.php
r2082411 r3252059 3 3 * Crowdfunding for WooCommerce - Products Add Form Shortcodes 4 4 * 5 * @version 3. 0.05 * @version 3.1.13 6 6 * @since 2.3.0 7 7 * @author Algoritmika Ltd. … … 221 221 * alg_wc_crowdfunding_product_add_new. 222 222 * 223 * @version 3. 0.0223 * @version 3.1.13 224 224 * @since 2.3.0 225 225 * @todo [dev] `multipart` only if image... … … 318 318 319 319 $header_html .= '<h3>'; 320 $header_html .= ( 0 == $atts['product_id'] ) ? __( 'Add New Product', 'crowdfunding-for-woocommerce' ) : __( 'Edit Product', 'crowdfunding-for-woocommerce' );320 $header_html .= ( 0 == $atts['product_id'] ) ? esc_html__( 'Add New Product', 'crowdfunding-for-woocommerce' ) : __( 'Edit Product', 'crowdfunding-for-woocommerce' ); 321 321 $header_html .= '</h3>'; 322 $header_html .= '<form method="post" action="' . remove_query_arg( array( 'alg_wc_crowdfunding_edit_product_image_delete', 'alg_wc_crowdfunding_delete_product') ) . '" enctype="multipart/form-data">';322 $header_html .= '<form method="post" action="' . esc_url( remove_query_arg( array( 'alg_wc_crowdfunding_edit_product_image_delete', 'alg_wc_crowdfunding_delete_product' ) ) ) . '" enctype="multipart/form-data">'; 323 323 324 324 $required_mark_html_template = ' <abbr class="required" title="required">*</abbr>'; -
crowdfunding-for-woocommerce/trunk/readme.txt
r3143946 r3252059 3 3 Tags: woocommerce, crowdfunding 4 4 Requires at least: 4.4 5 Tested up to: 6. 66 Stable tag: 3.1.1 25 Tested up to: 6.7 6 Stable tag: 3.1.13 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 76 76 77 77 == Changelog == 78 79 = 3.1.13 - 2025-03-07 = 80 * FIX: URL escaping issue. 78 81 79 82 = 3.1.12 - 2024-08-29 =
Note: See TracChangeset
for help on using the changeset viewer.