WP eCommerce - Version 3.8.13.4

Version Description

  • Fix: Update PayPal payment gateways to use HTTP 1.1
Download this release

Release Info

Developer JustinSainton
Plugin Icon 128x128 WP eCommerce
Version 3.8.13.4
Comparing to
See all releases

Code changes from version 3.8.13.3 to 3.8.13.4

.gitignore DELETED
@@ -1,2 +0,0 @@
1
- cookbooks
2
- tmp
 
 
readme.md CHANGED
@@ -15,7 +15,7 @@ If you're looking for general user support, please submit your support request o
15
  Development status
16
  -------------------------
17
 
18
- * The latest stable version is [3.8.13](http://wordpress.org/extend/plugins/wp-e-commerce).
19
  * Active development version: 3.8.14-dev (branch [master](https://github.com/wp-e-commerce/WP-e-Commerce))
20
  * [Roadmap for 3.8.14](https://github.com/wp-e-commerce/wp-e-commerce/wiki/Roadmap)
21
  * [3.8.14 tickets](https://github.com/wp-e-commerce/wp-e-commerce/issues?milestone=12&sort=updated&state=open)
15
  Development status
16
  -------------------------
17
 
18
+ * The latest stable version is [3.8.13.4](http://wordpress.org/extend/plugins/wp-e-commerce).
19
  * Active development version: 3.8.14-dev (branch [master](https://github.com/wp-e-commerce/WP-e-Commerce))
20
  * [Roadmap for 3.8.14](https://github.com/wp-e-commerce/wp-e-commerce/wiki/Roadmap)
21
  * [3.8.14 tickets](https://github.com/wp-e-commerce/wp-e-commerce/issues?milestone=12&sort=updated&state=open)
readme.txt CHANGED
@@ -4,13 +4,13 @@ Donate link: http://getshopped.org
4
  Tags: e-commerce, wp-e-commerce, shop, cart, paypal, authorize, stock control, ecommerce, shipping, tax
5
  Requires at least: 3.7
6
  Tested up to: 3.8
7
- Stable tag: 3.8.13.3
8
 
9
  WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online.
10
 
11
  == Description ==
12
 
13
- We make setting up an ecommerce shop easy, and with over 2.6 Million downloads, we have unparalleled experience.
14
 
15
  Features:
16
 
@@ -146,12 +146,14 @@ After upgrading from earlier versions look for link "Update Store". This will up
146
 
147
  == Changelog ==
148
 
 
 
 
149
  = 3.8.13.3 =
150
  * Fix: Users disappear in Network Admin -> Users page (for multisite)
151
  * Fix: User counts are incorrect when there are thousands separators.
152
  * Fix: "Save Product Files" button doesn't like being clicked on.
153
 
154
-
155
  = 3.8.13.2 =
156
  * Fix: Anonymous customers should not be visible in admin UI.
157
  * Fix: Cronjob to purge anonymous customers doesn't work due to memory issues.
4
  Tags: e-commerce, wp-e-commerce, shop, cart, paypal, authorize, stock control, ecommerce, shipping, tax
5
  Requires at least: 3.7
6
  Tested up to: 3.8
7
+ Stable tag: 3.8.13.4
8
 
9
  WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online.
10
 
11
  == Description ==
12
 
13
+ We make setting up an ecommerce shop easy, and with over 2.7 Million downloads, we have unparalleled experience.
14
 
15
  Features:
16
 
146
 
147
  == Changelog ==
148
 
149
+ = 3.8.13.4 =
150
+ * Fix: Update PayPal payment gateways to use HTTP 1.1
151
+
152
  = 3.8.13.3 =
153
  * Fix: Users disappear in Network Admin -> Users page (for multisite)
154
  * Fix: User counts are incorrect when there are thousands separators.
155
  * Fix: "Save Product Files" button doesn't like being clicked on.
156
 
 
157
  = 3.8.13.2 =
158
  * Fix: Anonymous customers should not be visible in admin UI.
159
  * Fix: Cronjob to purge anonymous customers doesn't work due to memory issues.
wp-shopping-cart.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WP e-Commerce
4
  * Plugin URI: http://getshopped.org/
5
  * Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://docs.getshopped.org/" target="_blank">Documentation</a>
6
- * Version: 3.8.13.3
7
  * Author: Instinct Entertainment
8
  * Author URI: http://getshopped.org/
9
  **/
3
  * Plugin Name: WP e-Commerce
4
  * Plugin URI: http://getshopped.org/
5
  * Description: A plugin that provides a WordPress Shopping Cart. See also: <a href="http://getshopped.org" target="_blank">GetShopped.org</a> | <a href="http://getshopped.org/forums/" target="_blank">Support Forum</a> | <a href="http://docs.getshopped.org/" target="_blank">Documentation</a>
6
+ * Version: 3.8.13.4
7
  * Author: Instinct Entertainment
8
  * Author URI: http://getshopped.org/
9
  **/
wpsc-core/wpsc-constants.php CHANGED
@@ -29,9 +29,9 @@ function wpsc_core_constants() {
29
  define( 'WPSC_URL', plugins_url( '', __FILE__ ) );
30
 
31
  // Define Plugin version
32
- define( 'WPSC_VERSION' , '3.8.13.3' );
33
- define( 'WPSC_MINOR_VERSION' , '5ec5b4d' );
34
- define( 'WPSC_PRESENTABLE_VERSION', '3.8.13.3' );
35
  define( 'WPSC_DB_VERSION' , 8 );
36
 
37
  // Define Debug Variables for developers
29
  define( 'WPSC_URL', plugins_url( '', __FILE__ ) );
30
 
31
  // Define Plugin version
32
+ define( 'WPSC_VERSION' , '3.8.13.4' );
33
+ define( 'WPSC_MINOR_VERSION' , 'e1349d0' );
34
+ define( 'WPSC_PRESENTABLE_VERSION', '3.8.13.4' );
35
  define( 'WPSC_DB_VERSION' , 8 );
36
 
37
  // Define Debug Variables for developers
wpsc-merchants/paypal-express.merchant.php CHANGED
@@ -123,6 +123,7 @@ class wpsc_merchant_paypal_express extends wpsc_merchant {
123
  $options = array(
124
  'timeout' => 20,
125
  'body' => $received_values,
 
126
  'user-agent' => ('WP e-Commerce/'.WPSC_PRESENTABLE_VERSION)
127
  );
128
 
@@ -992,6 +993,7 @@ function paypal_hash_call( $methodName, $nvpStr ) {
992
  $options = array(
993
  'timeout' => 20,
994
  'body' => $nvpreq,
 
995
  'sslverify' => false,
996
  );
997
 
123
  $options = array(
124
  'timeout' => 20,
125
  'body' => $received_values,
126
+ 'httpversion' => '1.1',
127
  'user-agent' => ('WP e-Commerce/'.WPSC_PRESENTABLE_VERSION)
128
  );
129
 
993
  $options = array(
994
  'timeout' => 20,
995
  'body' => $nvpreq,
996
+ 'httpversion' => '1.1',
997
  'sslverify' => false,
998
  );
999
 
wpsc-merchants/paypal-pro.merchant.php CHANGED
@@ -187,6 +187,7 @@ class wpsc_merchant_paypal_pro extends wpsc_merchant {
187
  $options = array(
188
  'timeout' => 20,
189
  'body' => $this->collected_gateway_data,
 
190
  'user-agent' => $this->cart_data['software_name'] . " " . get_bloginfo( 'url' ),
191
  'sslverify' => false,
192
  );
@@ -260,6 +261,7 @@ class wpsc_merchant_paypal_pro extends wpsc_merchant {
260
  $options = array(
261
  'timeout' => 20,
262
  'body' => $received_values,
 
263
  'user-agent' => ('WP e-Commerce/' . WPSC_PRESENTABLE_VERSION)
264
  );
265
 
187
  $options = array(
188
  'timeout' => 20,
189
  'body' => $this->collected_gateway_data,
190
+ 'httpversion' => '1.1',
191
  'user-agent' => $this->cart_data['software_name'] . " " . get_bloginfo( 'url' ),
192
  'sslverify' => false,
193
  );
261
  $options = array(
262
  'timeout' => 20,
263
  'body' => $received_values,
264
+ 'httpversion' => '1.1',
265
  'user-agent' => ('WP e-Commerce/' . WPSC_PRESENTABLE_VERSION)
266
  );
267
 
wpsc-merchants/paypal-standard.merchant.php CHANGED
@@ -393,6 +393,7 @@ class wpsc_merchant_paypal_standard extends wpsc_merchant {
393
  $options = array(
394
  'timeout' => 20,
395
  'body' => $received_values,
 
396
  'user-agent' => ( 'WP e-Commerce/' . WPSC_PRESENTABLE_VERSION )
397
  );
398
 
393
  $options = array(
394
  'timeout' => 20,
395
  'body' => $received_values,
396
+ 'httpversion' => '1.1',
397
  'user-agent' => ( 'WP e-Commerce/' . WPSC_PRESENTABLE_VERSION )
398
  );
399