💦 FULL SET: Changeset/ - Complete Album!

Changeset 3396966


Ignore:
Timestamp:
11/17/2025 07:56:26 AM (6 weeks ago)
Author:
naa986
Message:

.v1.2.3.41 commit

Location:
wp-paypal/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-paypal/trunk/readme.txt

    r3314248 r3396966  
    55Requires at least: 5.3
    66Tested up to: 6.8
    7 Stable tag: 1.2.3.40
     7Stable tag: 1.2.3.41
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    265265== Changelog ==
    266266
     267= 1.2.3.41 =
     268* Added support for optional custom input.
     269
    267270= 1.2.3.40 =
    268271* Made changes to save payment data.
  • wp-paypal/trunk/wp-paypal-checkout.php

    r3314248 r3396966  
    146146   
    147147            function validate(event) {
    148                 if(event.value.length === 0){
     148                if(event.required && event.value.length === 0){
    149149                    return false;
    150150                }
     
    155155                }
    156156                if(event.name == "custom"){
    157                     checkoutvar.custom = event.value; 
     157                    if(event.value.length !== 0){
     158                        checkoutvar.custom = event.value; 
     159                    }
    158160                }
    159161                if(event.name == "variation"){
  • wp-paypal/trunk/wp-paypal.php

    r3314248 r3396966  
    22/*
    33  Plugin Name: WP PayPal
    4   Version: 1.2.3.40
     4  Version: 1.2.3.41
    55  Plugin URI: https://wphowto.net/wordpress-paypal-plugin-732
    66  Author: naa986
     
    1717class WP_PAYPAL {
    1818   
    19     var $plugin_version = '1.2.3.40';
     19    var $plugin_version = '1.2.3.41';
    2020    var $db_version = '1.0.2';
    2121    var $plugin_url;
Note: See TracChangeset for help on using the changeset viewer.