WC Vendors - Version 1.7.3

Version Description

No Upgrade required at this time.

Download this release

Release Info

Developer digitalchild
Plugin Icon 128x128 WC Vendors
Version 1.7.3
Comparing to
See all releases

Code changes from version 1.7.2 to 1.7.3

changelog.txt CHANGED
@@ -1,5 +1,9 @@
1
  Changelog for WC Vendors
2
 
 
 
 
 
3
  Version 1.7.2
4
 
5
  * Added: Filters for seller tab #141
1
  Changelog for WC Vendors
2
 
3
+ Version 1.7.3
4
+
5
+ * Fixed: Paypal AP IPN url issue
6
+
7
  Version 1.7.2
8
 
9
  * Added: Filters for seller tab #141
class-wc-vendors.php CHANGED
@@ -7,7 +7,7 @@
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
- * Version: 1.7.2
11
  * Requires at least: 4.0.0
12
  * Tested up to: 4.2.2
13
  *
7
  * Author: WC Vendors
8
  * Author URI: http://wcvendors.com
9
  *
10
+ * Version: 1.7.3
11
  * Requires at least: 4.0.0
12
  * Tested up to: 4.2.2
13
  *
classes/gateways/PayPal_AdvPayments/paypal_ap.php CHANGED
@@ -358,7 +358,7 @@ class WC_PaypalAP extends WC_Payment_Gateway
358
  'order_id' => $order_id,
359
  );
360
 
361
- $payRequest->ipnNotificationUrl = esc_url( str_replace( 'https:', 'http:', add_query_arg( $args, home_url( '/' ) ) ) );
362
  $payRequest->memo = !empty( $order->customer_note ) ? $order->customer_note : '';
363
  $payRequest->reverseAllParallelPaymentsOnError = true;
364
 
358
  'order_id' => $order_id,
359
  );
360
 
361
+ $payRequest->ipnNotificationUrl = str_replace( 'https:', 'http:', add_query_arg( $args, home_url( '/' ) ) );
362
  $payRequest->memo = !empty( $order->customer_note ) ? $order->customer_note : '';
363
  $payRequest->reverseAllParallelPaymentsOnError = true;
364
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Author URI: http://www.wcvendors.com/
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
  Tested up to: 4.2.2
9
- Stable tag: 1.7.2
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
@@ -58,6 +58,10 @@ No Upgrade required at this time.
58
 
59
  == Changelog ==
60
 
 
 
 
 
61
  = Version 1.7.2 - May 8th 2015 =
62
 
63
  * Added: Filters for seller tab #141
6
  Plugin URI: http://www.wcvendors.com/
7
  Requires at least: 4.0
8
  Tested up to: 4.2.2
9
+ Stable tag: 1.7.3
10
  License: GPLv2 or later
11
 
12
  The free multi-vendor plugin for WooCommerce. Now you can allow anyone to open a store on your site!
58
 
59
  == Changelog ==
60
 
61
+ = Version 1.7.3 - 13th may 2015 =
62
+
63
+ * Fixed: Paypal AP IPN url issue
64
+
65
  = Version 1.7.2 - May 8th 2015 =
66
 
67
  * Added: Filters for seller tab #141