Changeset 3396966
- Timestamp:
- 11/17/2025 07:56:26 AM (6 weeks ago)
- Location:
- wp-paypal/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (2 diffs)
-
wp-paypal-checkout.php (modified) (2 diffs)
-
wp-paypal.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-paypal/trunk/readme.txt
r3314248 r3396966 5 5 Requires at least: 5.3 6 6 Tested up to: 6.8 7 Stable tag: 1.2.3.4 07 Stable tag: 1.2.3.41 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 265 265 == Changelog == 266 266 267 = 1.2.3.41 = 268 * Added support for optional custom input. 269 267 270 = 1.2.3.40 = 268 271 * Made changes to save payment data. -
wp-paypal/trunk/wp-paypal-checkout.php
r3314248 r3396966 146 146 147 147 function validate(event) { 148 if(event. value.length === 0){148 if(event.required && event.value.length === 0){ 149 149 return false; 150 150 } … … 155 155 } 156 156 if(event.name == "custom"){ 157 checkoutvar.custom = event.value; 157 if(event.value.length !== 0){ 158 checkoutvar.custom = event.value; 159 } 158 160 } 159 161 if(event.name == "variation"){ -
wp-paypal/trunk/wp-paypal.php
r3314248 r3396966 2 2 /* 3 3 Plugin Name: WP PayPal 4 Version: 1.2.3.4 04 Version: 1.2.3.41 5 5 Plugin URI: https://wphowto.net/wordpress-paypal-plugin-732 6 6 Author: naa986 … … 17 17 class WP_PAYPAL { 18 18 19 var $plugin_version = '1.2.3.4 0';19 var $plugin_version = '1.2.3.41'; 20 20 var $db_version = '1.0.2'; 21 21 var $plugin_url;
Note: See TracChangeset
for help on using the changeset viewer.