Plugin Directory

Changeset 3021034


Ignore:
Timestamp:
01/12/2024 02:23:59 PM (2 years ago)
Author:
taiflywire
Message:

Updating trunk with GitLab release 1.0.9

Location:
flywire-payment-gateway
Files:
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • flywire-payment-gateway/trunk/CHANGELOG

    r2907372 r3021034  
    22All notable changes to this project will be documented in this file.
    33 
     4
     5## [1.0.9] - 2023-05-22
     6
     7### Changed
     8- fixed bug where numeric fields were not cast to string in config
    49
    510## [1.0.8] - 2023-05-03
  • flywire-payment-gateway/trunk/flywire-payment-gateway.php

    r2907372 r3021034  
    66 * Author: Flywire
    77 * Author URI: http://www.flywire.com/
    8  * Version: 1.0.8
     8 * Version: 1.0.9
    99 * Text Domain: flywire-payment-gateway
    1010 * Domain Path: /i18n/languages/
     
    879879            }
    880880
    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 ));
    882882
    883883            if ( $order_pay ) {
     
    885885                $redirect = $order_pay_page . '?' . http_build_query( $config );
    886886            } 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 ) . ')';
    888888            }
    889889
  • flywire-payment-gateway/trunk/readme.txt

    r2907372 r3021034  
    44Requires at least: 5.7
    55Tested up to: 6.2
    6 Stable tag: 1.0.8
     6Stable tag: 1.0.9
    77Requires PHP: 8.0
    88License: GPLv2 or later
     
    2727
    2828== Changelog ==
     29
     30= 1.0.9 =
     31* Fixed bug where numeric fields were not cast to string in config
    2932
    3033= 1.0.8 =
Note: See TracChangeset for help on using the changeset viewer.