Plugin Directory

Changeset 3413320


Ignore:
Timestamp:
12/07/2025 03:43:51 AM (4 months ago)
Author:
fxholl
Message:

Nova versão

Location:
kiskadi
Files:
9 edited
1 copied

Legend:

Unmodified
Added
Removed
  • kiskadi

    • Property svn:ignore set to
      .idea
  • kiskadi/tags/1.3.4/includes/class-kiskadi.php

    r3253078 r3413320  
    1212
    1313    /** @var string */
    14     public $version = '1.3.3';
     14    public $version = '1.3.4';
    1515
    1616    /** @var self */
  • kiskadi/tags/1.3.4/includes/integration/woocommerce/checkout/helper/class-cashback-helper.php

    r3094720 r3413320  
    2929        }
    3030
    31         if (
    32             isset( $_POST['woocommerce-process-checkout-nonce'], $_POST['billing_cpf'], $_POST['billing_cnpj'] )
    33             /* commented validation as it is already executed in the process_checkout function and generates nonce difference error */
    34             // && false !== wp_verify_nonce( sanitize_key( $_POST['woocommerce-process-checkout-nonce'] ), 'woocommerce-process_checkout' )
    35         ) {
     31        if (
     32            isset( $_POST['woocommerce-process-checkout-nonce'] ) &&
     33            ( isset( $_POST['billing_cpf'] ) || isset( $_POST['billing_cnpj'] ) )
     34        ) {
    3635            $is_valid_request = true;
    3736        }
  • kiskadi/tags/1.3.4/kiskadi.php

    r3253078 r3413320  
    88 * Text Domain:     kiskadi
    99 * Domain Path:     /languages
    10  * Version:         1.3.3
     10 * Version:         1.3.4
    1111 *
    1212 * @package         Kiskadi
  • kiskadi/tags/1.3.4/readme.txt

    r3253078 r3413320  
    66Tested up to: 6.5.3
    77Requires PHP: 7.2
    8 Stable tag: 1.3.3
     8Stable tag: 1.3.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3535== Changelog ==
    3636
    37 = 1.3.3 =
     37= 1.3.4 =
    3838* Fix - adjusted discount calculations and change sended Final Amount Without Shipping
    3939
  • kiskadi/trunk/includes/class-kiskadi.php

    r3253078 r3413320  
    1212
    1313    /** @var string */
    14     public $version = '1.3.3';
     14    public $version = '1.3.4';
    1515
    1616    /** @var self */
  • kiskadi/trunk/includes/integration/woocommerce/checkout/helper/class-cashback-helper.php

    r3094720 r3413320  
    2929        }
    3030
    31         if (
    32             isset( $_POST['woocommerce-process-checkout-nonce'], $_POST['billing_cpf'], $_POST['billing_cnpj'] )
    33             /* commented validation as it is already executed in the process_checkout function and generates nonce difference error */
    34             // && false !== wp_verify_nonce( sanitize_key( $_POST['woocommerce-process-checkout-nonce'] ), 'woocommerce-process_checkout' )
    35         ) {
     31        if (
     32            isset( $_POST['woocommerce-process-checkout-nonce'] ) &&
     33            ( isset( $_POST['billing_cpf'] ) || isset( $_POST['billing_cnpj'] ) )
     34        ) {
    3635            $is_valid_request = true;
    3736        }
  • kiskadi/trunk/kiskadi.php

    r3253078 r3413320  
    88 * Text Domain:     kiskadi
    99 * Domain Path:     /languages
    10  * Version:         1.3.3
     10 * Version:         1.3.4
    1111 *
    1212 * @package         Kiskadi
  • kiskadi/trunk/readme.txt

    r3253078 r3413320  
    66Tested up to: 6.5.3
    77Requires PHP: 7.2
    8 Stable tag: 1.3.3
     8Stable tag: 1.3.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    3535== Changelog ==
    3636
    37 = 1.3.3 =
     37= 1.3.4 =
    3838* Fix - adjusted discount calculations and change sended Final Amount Without Shipping
    3939
Note: See TracChangeset for help on using the changeset viewer.