Plugin Directory

Changeset 2977523


Ignore:
Timestamp:
10/11/2023 11:15:15 AM (2 years ago)
Author:
revolutbusiness
Message:

Update plugin sources to version 4.9.3

Location:
revolut-gateway-for-woocommerce/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • revolut-gateway-for-woocommerce/trunk/assets/js/revolut.js

    r2976441 r2977523  
    11411141      currency: currency,
    11421142      customer: customer,
     1143      __metadata: { channel: 'woocommerce' },
    11431144    })
    11441145  }
     
    11741175        promotionalBanner: true,
    11751176        customer: customer,
     1177        __metadata: { channel: 'woocommerce' },
    11761178      },
    11771179    )
  • revolut-gateway-for-woocommerce/trunk/gateway-revolut.php

    r2976441 r2977523  
    77 * Author URI: https://www.revolut.com/business/online-payments
    88 * Text Domain: revolut-gateway-for-woocommerce
    9  * Version: 4.9.2
     9 * Version: 4.9.3
    1010 * Requires at least: 4.4
    1111 * Tested up to: 6.1
     
    1616defined( 'ABSPATH' ) || exit;
    1717define( 'REVOLUT_PATH', plugin_dir_path( __FILE__ ) );
    18 define( 'WC_GATEWAY_REVOLUT_VERSION', '4.9.2' );
     18define( 'WC_GATEWAY_REVOLUT_VERSION', '4.9.3' );
    1919define( 'WC_GATEWAY_PUBLIC_KEY_ENDPOINT', '/public-key/latest' );
    2020define( 'WC_GATEWAY_REVPAY_INDEX', 'USE_REVOLUT_PAY_2_0' );
  • revolut-gateway-for-woocommerce/trunk/includes/settings/class-wc-revolut-settings-api.php

    r2974726 r2977523  
    304304        if ( ! empty( $locations ) ) {
    305305            foreach ( $locations as $location ) {
    306                 if ( $location['name'] === $domain && ! empty( $location['id'] ) ) {
     306                if ( isset( $location['name'] ) && $location['name'] === $domain && ! empty( $location['id'] ) ) {
    307307                    return $location['id'];
    308308                }
  • revolut-gateway-for-woocommerce/trunk/readme.txt

    r2976441 r2977523  
    44Requires at least: 4.4
    55Tested up to: 6.3
    6 Stable tag: 4.9.2
     6Stable tag: 4.9.3
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    9898
    9999== Changelog ==
     100= 4.9.3 =
     101* Fixed location registration issue
     102
    100103= 4.9.2 =
    101104* Updated payment gateway logos
Note: See TracChangeset for help on using the changeset viewer.