Changeset 3457517
- Timestamp:
- 02/09/2026 10:13:41 PM (7 weeks ago)
- Location:
- checkout-for-paypal/trunk
- Files:
-
- 2 edited
-
checkout-for-paypal.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
checkout-for-paypal/trunk/checkout-for-paypal.php
r3454161 r3457517 2 2 /* 3 3 Plugin Name: Checkout for PayPal 4 Version: 1.0.4 54 Version: 1.0.46 5 5 Plugin URI: https://noorsplugin.com/checkout-for-paypal-wordpress-plugin/ 6 6 Author: naa986 … … 19 19 class CHECKOUT_FOR_PAYPAL { 20 20 21 var $plugin_version = '1.0.4 5';21 var $plugin_version = '1.0.46'; 22 22 var $db_version = '1.0.3'; 23 23 var $plugin_url; … … 899 899 //$return_output = 'window.location.replace("'.esc_js(esc_url($return_url)).'");'; 900 900 $return_output = "let temp_return_url = '".esc_js(esc_url($return_url))."';"; 901 $return_output .= "let return_url = temp_return_url.replace( '&', '&');";901 $return_output .= "let return_url = temp_return_url.replace(/&/g, '&');"; 902 902 $return_output .= "window.location.replace(return_url);"; 903 903 } … … 910 910 //$cancel_output = 'window.location.replace("'.esc_js(esc_url($cancel_url)).'");'; 911 911 $cancel_output = "let temp_cancel_url = '".esc_js(esc_url($cancel_url))."';"; 912 $cancel_output .= "let cancel_url = temp_cancel_url.replace( '&', '&');";912 $cancel_output .= "let cancel_url = temp_cancel_url.replace(/&/g, '&');"; 913 913 $cancel_output .= "window.location.replace(cancel_url);"; 914 914 } -
checkout-for-paypal/trunk/readme.txt
r3454161 r3457517 5 5 Requires at least: 5.5 6 6 Tested up to: 6.9 7 Stable tag: 1.0.4 57 Stable tag: 1.0.46 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 97 97 == Changelog == 98 98 99 = 1.0.46 = 100 * Changes to URL parameters. 101 99 102 = 1.0.45 = 100 103 * Changed order menu icon.
Note: See TracChangeset
for help on using the changeset viewer.