Changeset 3021034
- Timestamp:
- 01/12/2024 02:23:59 PM (2 years ago)
- Location:
- flywire-payment-gateway
- Files:
-
- 3 edited
- 5 copied
-
tags/1.0.8 (copied) (copied from flywire-payment-gateway/trunk)
-
tags/1.0.8/CHANGELOG (copied) (copied from flywire-payment-gateway/trunk/CHANGELOG)
-
tags/1.0.8/flywire-payment-gateway.php (copied) (copied from flywire-payment-gateway/trunk/flywire-payment-gateway.php)
-
tags/1.0.8/includes/flywire-payment-gateway-request.php (copied) (copied from flywire-payment-gateway/trunk/includes/flywire-payment-gateway-request.php)
-
tags/1.0.8/readme.txt (copied) (copied from flywire-payment-gateway/trunk/readme.txt)
-
trunk/CHANGELOG (modified) (1 diff)
-
trunk/flywire-payment-gateway.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
flywire-payment-gateway/trunk/CHANGELOG
r2907372 r3021034 2 2 All notable changes to this project will be documented in this file. 3 3 4 5 ## [1.0.9] - 2023-05-22 6 7 ### Changed 8 - fixed bug where numeric fields were not cast to string in config 4 9 5 10 ## [1.0.8] - 2023-05-03 -
flywire-payment-gateway/trunk/flywire-payment-gateway.php
r2907372 r3021034 6 6 * Author: Flywire 7 7 * Author URI: http://www.flywire.com/ 8 * Version: 1.0. 88 * Version: 1.0.9 9 9 * Text Domain: flywire-payment-gateway 10 10 * Domain Path: /i18n/languages/ … … 879 879 } 880 880 881 $this->log("Initializing Embed2.0 with JSON " . json_encode($config, JSON_UNESCAPED_SLASHES | JSON_NUMERIC_CHECK));881 $this->log("Initializing Embed2.0 with JSON " . json_encode($config, JSON_UNESCAPED_SLASHES )); 882 882 883 883 if ( $order_pay ) { … … 885 885 $redirect = $order_pay_page . '?' . http_build_query( $config ); 886 886 } else { 887 $redirect = 'javascript:window.flywire.WooCommerce.show(' . json_encode( $config, JSON_UNESCAPED_SLASHES | JSON_NUMERIC_CHECK) . ')';887 $redirect = 'javascript:window.flywire.WooCommerce.show(' . json_encode( $config, JSON_UNESCAPED_SLASHES ) . ')'; 888 888 } 889 889 -
flywire-payment-gateway/trunk/readme.txt
r2907372 r3021034 4 4 Requires at least: 5.7 5 5 Tested up to: 6.2 6 Stable tag: 1.0. 86 Stable tag: 1.0.9 7 7 Requires PHP: 8.0 8 8 License: GPLv2 or later … … 27 27 28 28 == Changelog == 29 30 = 1.0.9 = 31 * Fixed bug where numeric fields were not cast to string in config 29 32 30 33 = 1.0.8 =
Note: See TracChangeset
for help on using the changeset viewer.