WooCommerce PayPal Express Checkout Payment Gateway - Version 1.6.8

Version Description

  • 2019-01-25 =
  • Fix - Guard against themes applying filter with too few params
Download this release

Release Info

Developer automattic
Plugin Icon 128x128 WooCommerce PayPal Express Checkout Payment Gateway
Version 1.6.8
Comparing to
See all releases

Code changes from version 1.6.7 to 1.6.8

changelog.txt CHANGED
@@ -1,5 +1,8 @@
1
  *** Changelog ***
2
 
 
 
 
3
  = 1.6.7 - 2019-01-25 =
4
  * Fix - Error 10413 when using coupons
5
  * Fix: All variation details when using buttons on product pages are kept
1
  *** Changelog ***
2
 
3
+ = 1.6.8 - 2019-01-25 =
4
+ * Fix - Guard against themes applying filter with too few params
5
+
6
  = 1.6.7 - 2019-01-25 =
7
  * Fix - Error 10413 when using coupons
8
  * Fix: All variation details when using buttons on product pages are kept
includes/class-wc-gateway-ppec-cart-handler.php CHANGED
@@ -364,7 +364,7 @@ class WC_Gateway_PPEC_Cart_Handler {
364
  <?php
365
  }
366
 
367
- public function maybe_enqueue_checkout_js( $widget_title, $widget_instance, $widget_id ) {
368
  if ( 'woocommerce_widget_cart' === $widget_id ) {
369
  $gateways = WC()->payment_gateways->get_available_payment_gateways();
370
  $settings = wc_gateway_ppec()->settings;
364
  <?php
365
  }
366
 
367
+ public function maybe_enqueue_checkout_js( $widget_title, $widget_instance = array(), $widget_id = null ) {
368
  if ( 'woocommerce_widget_cart' === $widget_id ) {
369
  $gateways = WC()->payment_gateways->get_available_payment_gateways();
370
  $settings = wc_gateway_ppec()->settings;
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic, woothemes, akeda, dwainm, royho, allendav, slash1andy,
3
  Tags: ecommerce, e-commerce, commerce, woothemes, wordpress ecommerce, store, sales, sell, shop, shopping, cart, checkout, configurable, paypal
4
  Requires at least: 4.4
5
  Tested up to: 5.0.3
6
- Stable tag: 1.6.7
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -101,6 +101,9 @@ Please use this to inform us about bugs, or make contributions via PRs.
101
 
102
  == Changelog ==
103
 
 
 
 
104
  = 1.6.7 - 2019-01-25 =
105
  * Fix - Error 10413 when using coupons
106
  * Fix: All variation details when using buttons on product pages are kept
3
  Tags: ecommerce, e-commerce, commerce, woothemes, wordpress ecommerce, store, sales, sell, shop, shopping, cart, checkout, configurable, paypal
4
  Requires at least: 4.4
5
  Tested up to: 5.0.3
6
+ Stable tag: 1.6.8
7
  License: GPLv3
8
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
9
 
101
 
102
  == Changelog ==
103
 
104
+ = 1.6.8 - 2019-01-25 =
105
+ * Fix - Guard against themes applying filter with too few params
106
+
107
  = 1.6.7 - 2019-01-25 =
108
  * Fix - Error 10413 when using coupons
109
  * Fix: All variation details when using buttons on product pages are kept
woocommerce-gateway-paypal-express-checkout.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WooCommerce PayPal Checkout Gateway
4
  * Plugin URI: https://woocommerce.com/products/woocommerce-gateway-paypal-express-checkout/
5
  * Description: A payment gateway for PayPal Checkout (https://www.paypal.com/us/webapps/mpp/paypal-checkout).
6
- * Version: 1.6.7
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com
9
  * Copyright: © 2018 WooCommerce / PayPal.
@@ -27,7 +27,7 @@ if ( ! defined( 'ABSPATH' ) ) {
27
  exit; // Exit if accessed directly
28
  }
29
 
30
- define( 'WC_GATEWAY_PPEC_VERSION', '1.6.5' );
31
 
32
  /**
33
  * Return instance of WC_Gateway_PPEC_Plugin.
3
  * Plugin Name: WooCommerce PayPal Checkout Gateway
4
  * Plugin URI: https://woocommerce.com/products/woocommerce-gateway-paypal-express-checkout/
5
  * Description: A payment gateway for PayPal Checkout (https://www.paypal.com/us/webapps/mpp/paypal-checkout).
6
+ * Version: 1.6.8
7
  * Author: WooCommerce
8
  * Author URI: https://woocommerce.com
9
  * Copyright: © 2018 WooCommerce / PayPal.
27
  exit; // Exit if accessed directly
28
  }
29
 
30
+ define( 'WC_GATEWAY_PPEC_VERSION', '1.6.8' );
31
 
32
  /**
33
  * Return instance of WC_Gateway_PPEC_Plugin.