gnu-taler-payment-for-woocommerce

WooCommerce plugin to enable payments with GNU Taler
Log | Files | Refs | LICENSE

commit 9354b7dd3241214305d3cf7c0663096e5b67587e
parent aa5ea4f9e7a4956d40100ddca09b137e2e4b0d7c
Author: Christian Grothoff <christian@grothoff.org>
Date:   Tue, 14 Dec 2021 16:46:41 +0100

update plugin to support Taler merchant protocol v3

Diffstat:
Mclass-wc-gnutaler-gateway.php | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/class-wc-gnutaler-gateway.php b/class-wc-gnutaler-gateway.php @@ -9,7 +9,7 @@ * Plugin Name: GNU Taler Payment for WooCommerce * Plugin URI: https://git.taler.net/woocommerce-taler * Description: This plugin enables payments via the GNU Taler payment system - * Version: 0.8 + * Version: 0.9 * Author: Dominique Hofmann, Jan StrĂ¼bin, Christian Grothoff * Author URI: https://taler.net/ * @@ -723,7 +723,7 @@ function gnutaler_init_gateway_class() { ); if ( isset( $refund_delay ) ) { $order_json['refund_delay'] = array( - 'd_ms' => 1000 * 60 * 60 * 24 * intval( $refund_delay ), + 'd_us' => 1000 * 1000 * 60 * 60 * 24 * intval( $refund_delay ), ); } return $order_json;