Changeset 1682925
- Timestamp:
- 06/21/2017 08:19:49 PM (9 years ago)
- Location:
- ithemes-exchange
- Files:
-
- 14 edited
- 1 copied
-
tags/1.36.5 (copied) (copied from ithemes-exchange/trunk)
-
tags/1.36.5/api/downloads.php (modified) (1 diff)
-
tags/1.36.5/history.txt (modified) (1 diff)
-
tags/1.36.5/init.php (modified) (2 diffs)
-
tags/1.36.5/lang/ithemes-exchange.pot (modified) (2 diffs)
-
tags/1.36.5/lib/products/class.products-post-type.php (modified) (1 diff)
-
tags/1.36.5/lib/transactions/activity/class.collection.php (modified) (1 diff)
-
tags/1.36.5/readme.txt (modified) (2 diffs)
-
trunk/api/downloads.php (modified) (1 diff)
-
trunk/history.txt (modified) (1 diff)
-
trunk/init.php (modified) (2 diffs)
-
trunk/lang/ithemes-exchange.pot (modified) (2 diffs)
-
trunk/lib/products/class.products-post-type.php (modified) (1 diff)
-
trunk/lib/transactions/activity/class.collection.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ithemes-exchange/tags/1.36.5/api/downloads.php
r1337460 r1682925 360 360 361 361 // Attempt to grab file 362 if ( $response = wp_remote_head( str_replace( ' ', '%20', $url ) ) ) {362 if ( $response = wp_remote_head( str_replace( ' ', '%20', $url ), array( 'redirection' => 5 ) ) ) { 363 363 if ( ! is_wp_error( $response ) ) { 364 364 $valid_response_codes = array( -
ithemes-exchange/tags/1.36.5/history.txt
r1651045 r1682925 1321 1321 1.36.4 - Timothy Jacobs, Chris Jean 1322 1322 Fix: Account for new return types in iThemes Security reCaptcha Module 1323 1.36.5 - Timothy Jacobs, Elise Alley 1324 Fix: Ensure invalid transaction activity items are not returned. 1325 Fix: PHP 7.1 compatibility. 1326 Fix: Follow redirects when serving downloads. -
ithemes-exchange/tags/1.36.5/init.php
r1651045 r1682925 2 2 /* 3 3 * Plugin Name: iThemes Exchange 4 * Version: 1.36. 44 * Version: 1.36.5 5 5 * Text Domain: it-l10n-ithemes-exchange 6 6 * Description: Easily sell your digital goods with iThemes Exchange, simple ecommerce for WordPress … … 25 25 class IT_Exchange { 26 26 27 var $_version = '1.36. 4';27 var $_version = '1.36.5'; 28 28 var $_wp_minimum = '3.5'; 29 29 var $_slug = 'ithemes-exchange'; -
ithemes-exchange/tags/1.36.5/lang/ithemes-exchange.pot
r1651045 r1682925 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: iThemes Exchange 1.36. 4\n"5 "Project-Id-Version: iThemes Exchange 1.36.5\n" 6 6 "Report-Msgid-Bugs-To: http://ithemes.com/support/\n" 7 "POT-Creation-Date: 2017-0 5-03 21:07:02+00:00\n"7 "POT-Creation-Date: 2017-06-21 20:01:39+00:00\n" 8 8 "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n" 9 9 "MIME-Version: 1.0\n" … … 2884 2884 msgstr "" 2885 2885 2886 #. #-#-#-#-# ithemes-exchange.pot (iThemes Exchange 1.36. 4) #-#-#-#-#2886 #. #-#-#-#-# ithemes-exchange.pot (iThemes Exchange 1.36.5) #-#-#-#-# 2887 2887 #. Plugin Name of the plugin/theme 2888 2888 #: core-addons/admin/basic-reporting/init.php:21 -
ithemes-exchange/tags/1.36.5/lib/products/class.products-post-type.php
r1429310 r1682925 80 80 81 81 // Preserve existing meta_query 82 $meta_query = $query->get( 'meta_query' );82 $meta_query = $query->get( 'meta_query', array() ); 83 83 84 84 // Add ours to existing -
ithemes-exchange/tags/1.36.5/lib/transactions/activity/class.collection.php
r1332217 r1682925 86 86 87 87 foreach ( $query->get_posts() as $post ) { 88 $this->activity[] = it_exchange_get_txn_activity( $post->ID ); 88 $activity = it_exchange_get_txn_activity( $post->ID ); 89 90 if ( $activity ) { 91 $this->activity[] = $activity; 92 } 89 93 } 90 94 } -
ithemes-exchange/tags/1.36.5/readme.txt
r1651045 r1682925 3 3 Tags: ecommerce 4 4 Requires at least: 3.7 5 Tested up to: 4. 76 Stable tag: 1.36. 45 Tested up to: 4.8 6 Stable tag: 1.36.5 7 7 License: GPLv2 or later 8 8 … … 88 88 89 89 == Changelog == 90 = 1.36.5 = 91 * Fix: Ensure invalid transaction activity items are not returned. 92 * Fix: PHP 7.1 compatibility. 93 * Fix: Follow redirects when serving downloads. 94 90 95 = 1.36.4 = 91 96 * Fix: Account for new return types in iThemes Security reCaptcha Module -
ithemes-exchange/trunk/api/downloads.php
r1337460 r1682925 360 360 361 361 // Attempt to grab file 362 if ( $response = wp_remote_head( str_replace( ' ', '%20', $url ) ) ) {362 if ( $response = wp_remote_head( str_replace( ' ', '%20', $url ), array( 'redirection' => 5 ) ) ) { 363 363 if ( ! is_wp_error( $response ) ) { 364 364 $valid_response_codes = array( -
ithemes-exchange/trunk/history.txt
r1651045 r1682925 1321 1321 1.36.4 - Timothy Jacobs, Chris Jean 1322 1322 Fix: Account for new return types in iThemes Security reCaptcha Module 1323 1.36.5 - Timothy Jacobs, Elise Alley 1324 Fix: Ensure invalid transaction activity items are not returned. 1325 Fix: PHP 7.1 compatibility. 1326 Fix: Follow redirects when serving downloads. -
ithemes-exchange/trunk/init.php
r1651045 r1682925 2 2 /* 3 3 * Plugin Name: iThemes Exchange 4 * Version: 1.36. 44 * Version: 1.36.5 5 5 * Text Domain: it-l10n-ithemes-exchange 6 6 * Description: Easily sell your digital goods with iThemes Exchange, simple ecommerce for WordPress … … 25 25 class IT_Exchange { 26 26 27 var $_version = '1.36. 4';27 var $_version = '1.36.5'; 28 28 var $_wp_minimum = '3.5'; 29 29 var $_slug = 'ithemes-exchange'; -
ithemes-exchange/trunk/lang/ithemes-exchange.pot
r1651045 r1682925 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: iThemes Exchange 1.36. 4\n"5 "Project-Id-Version: iThemes Exchange 1.36.5\n" 6 6 "Report-Msgid-Bugs-To: http://ithemes.com/support/\n" 7 "POT-Creation-Date: 2017-0 5-03 21:07:02+00:00\n"7 "POT-Creation-Date: 2017-06-21 20:01:39+00:00\n" 8 8 "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n" 9 9 "MIME-Version: 1.0\n" … … 2884 2884 msgstr "" 2885 2885 2886 #. #-#-#-#-# ithemes-exchange.pot (iThemes Exchange 1.36. 4) #-#-#-#-#2886 #. #-#-#-#-# ithemes-exchange.pot (iThemes Exchange 1.36.5) #-#-#-#-# 2887 2887 #. Plugin Name of the plugin/theme 2888 2888 #: core-addons/admin/basic-reporting/init.php:21 -
ithemes-exchange/trunk/lib/products/class.products-post-type.php
r1429310 r1682925 80 80 81 81 // Preserve existing meta_query 82 $meta_query = $query->get( 'meta_query' );82 $meta_query = $query->get( 'meta_query', array() ); 83 83 84 84 // Add ours to existing -
ithemes-exchange/trunk/lib/transactions/activity/class.collection.php
r1332217 r1682925 86 86 87 87 foreach ( $query->get_posts() as $post ) { 88 $this->activity[] = it_exchange_get_txn_activity( $post->ID ); 88 $activity = it_exchange_get_txn_activity( $post->ID ); 89 90 if ( $activity ) { 91 $this->activity[] = $activity; 92 } 89 93 } 90 94 } -
ithemes-exchange/trunk/readme.txt
r1651045 r1682925 3 3 Tags: ecommerce 4 4 Requires at least: 3.7 5 Tested up to: 4. 76 Stable tag: 1.36. 45 Tested up to: 4.8 6 Stable tag: 1.36.5 7 7 License: GPLv2 or later 8 8 … … 88 88 89 89 == Changelog == 90 = 1.36.5 = 91 * Fix: Ensure invalid transaction activity items are not returned. 92 * Fix: PHP 7.1 compatibility. 93 * Fix: Follow redirects when serving downloads. 94 90 95 = 1.36.4 = 91 96 * Fix: Account for new return types in iThemes Security reCaptcha Module
Note: See TracChangeset
for help on using the changeset viewer.