Plugin Directory

Changeset 3252059


Ignore:
Timestamp:
03/07/2025 09:13:53 AM (13 months ago)
Author:
wpwham
Message:

Version 3.1.13 update

Location:
crowdfunding-for-woocommerce/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • crowdfunding-for-woocommerce/trunk/crowdfunding-for-woocommerce.php

    r3143946 r3252059  
    44Plugin URI: https://wpwham.com/products/crowdfunding-for-woocommerce/
    55Description: Crowdfunding products for WooCommerce.
    6 Version: 3.1.12
     6Version: 3.1.13
    77Author: WP Wham
    88Author URI: https://wpwham.com/
    99Text Domain: crowdfunding-for-woocommerce
    1010Domain Path: /langs
    11 Copyright: © 2018-2024 WP Wham. All rights reserved.
     11Copyright: © 2018-2025 WP Wham. All rights reserved.
    1212License: GNU General Public License v3.0
    1313License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    4545 *
    4646 * @class   Alg_Woocommerce_Crowdfunding
    47  * @version 3.1.12
     47 * @version 3.1.13
    4848 */
    4949final class Alg_Woocommerce_Crowdfunding {
     
    5858     * @since 2.3.0
    5959     */
    60     public $version = '3.1.12';
     60    public $version = '3.1.13';
    6161
    6262    /**
  • crowdfunding-for-woocommerce/trunk/includes/shortcodes/class-wc-crowdfunding-shortcodes-products-add-form.php

    r2082411 r3252059  
    33 * Crowdfunding for WooCommerce - Products Add Form Shortcodes
    44 *
    5  * @version 3.0.0
     5 * @version 3.1.13
    66 * @since   2.3.0
    77 * @author  Algoritmika Ltd.
     
    221221     * alg_wc_crowdfunding_product_add_new.
    222222     *
    223      * @version 3.0.0
     223     * @version 3.1.13
    224224     * @since   2.3.0
    225225     * @todo    [dev] `multipart` only if image...
     
    318318
    319319        $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' );
    321321        $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">';
    323323
    324324        $required_mark_html_template = '&nbsp;<abbr class="required" title="required">*</abbr>';
  • crowdfunding-for-woocommerce/trunk/readme.txt

    r3143946 r3252059  
    33Tags: woocommerce, crowdfunding
    44Requires at least: 4.4
    5 Tested up to: 6.6
    6 Stable tag: 3.1.12
     5Tested up to: 6.7
     6Stable tag: 3.1.13
    77License: GNU General Public License v3.0
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7676
    7777== Changelog ==
     78
     79= 3.1.13 - 2025-03-07 =
     80* FIX: URL escaping issue.
    7881
    7982= 3.1.12 - 2024-08-29 =
Note: See TracChangeset for help on using the changeset viewer.