Changeset 2977523
- Timestamp:
- 10/11/2023 11:15:15 AM (2 years ago)
- Location:
- revolut-gateway-for-woocommerce/trunk
- Files:
-
- 4 edited
-
assets/js/revolut.js (modified) (2 diffs)
-
gateway-revolut.php (modified) (2 diffs)
-
includes/settings/class-wc-revolut-settings-api.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
revolut-gateway-for-woocommerce/trunk/assets/js/revolut.js
r2976441 r2977523 1141 1141 currency: currency, 1142 1142 customer: customer, 1143 __metadata: { channel: 'woocommerce' }, 1143 1144 }) 1144 1145 } … … 1174 1175 promotionalBanner: true, 1175 1176 customer: customer, 1177 __metadata: { channel: 'woocommerce' }, 1176 1178 }, 1177 1179 ) -
revolut-gateway-for-woocommerce/trunk/gateway-revolut.php
r2976441 r2977523 7 7 * Author URI: https://www.revolut.com/business/online-payments 8 8 * Text Domain: revolut-gateway-for-woocommerce 9 * Version: 4.9. 29 * Version: 4.9.3 10 10 * Requires at least: 4.4 11 11 * Tested up to: 6.1 … … 16 16 defined( 'ABSPATH' ) || exit; 17 17 define( 'REVOLUT_PATH', plugin_dir_path( __FILE__ ) ); 18 define( 'WC_GATEWAY_REVOLUT_VERSION', '4.9. 2' );18 define( 'WC_GATEWAY_REVOLUT_VERSION', '4.9.3' ); 19 19 define( 'WC_GATEWAY_PUBLIC_KEY_ENDPOINT', '/public-key/latest' ); 20 20 define( 'WC_GATEWAY_REVPAY_INDEX', 'USE_REVOLUT_PAY_2_0' ); -
revolut-gateway-for-woocommerce/trunk/includes/settings/class-wc-revolut-settings-api.php
r2974726 r2977523 304 304 if ( ! empty( $locations ) ) { 305 305 foreach ( $locations as $location ) { 306 if ( $location['name'] === $domain && ! empty( $location['id'] ) ) {306 if ( isset( $location['name'] ) && $location['name'] === $domain && ! empty( $location['id'] ) ) { 307 307 return $location['id']; 308 308 } -
revolut-gateway-for-woocommerce/trunk/readme.txt
r2976441 r2977523 4 4 Requires at least: 4.4 5 5 Tested up to: 6.3 6 Stable tag: 4.9. 26 Stable tag: 4.9.3 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 98 98 99 99 == Changelog == 100 = 4.9.3 = 101 * Fixed location registration issue 102 100 103 = 4.9.2 = 101 104 * Updated payment gateway logos
Note: See TracChangeset
for help on using the changeset viewer.