Plugin Directory

Changeset 1682925


Ignore:
Timestamp:
06/21/2017 08:19:49 PM (9 years ago)
Author:
layotte
Message:

Tagging 1.36.5

Location:
ithemes-exchange
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ithemes-exchange/tags/1.36.5/api/downloads.php

    r1337460 r1682925  
    360360
    361361    // 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 ) ) ) {
    363363        if ( ! is_wp_error( $response ) ) {
    364364            $valid_response_codes = array(
  • ithemes-exchange/tags/1.36.5/history.txt

    r1651045 r1682925  
    132113211.36.4 - Timothy Jacobs, Chris Jean
    13221322    Fix: Account for new return types in iThemes Security reCaptcha Module
     13231.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  
    22/*
    33 * Plugin Name: iThemes Exchange
    4  * Version: 1.36.4
     4 * Version: 1.36.5
    55 * Text Domain: it-l10n-ithemes-exchange
    66 * Description: Easily sell your digital goods with iThemes Exchange, simple ecommerce for WordPress
     
    2525class IT_Exchange {
    2626
    27     var $_version         = '1.36.4';
     27    var $_version         = '1.36.5';
    2828    var $_wp_minimum      = '3.5';
    2929    var $_slug            = 'ithemes-exchange';
  • ithemes-exchange/tags/1.36.5/lang/ithemes-exchange.pot

    r1651045 r1682925  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: iThemes Exchange 1.36.4\n"
     5"Project-Id-Version: iThemes Exchange 1.36.5\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2017-05-03 21:07:02+00:00\n"
     7"POT-Creation-Date: 2017-06-21 20:01:39+00:00\n"
    88"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
     
    28842884msgstr ""
    28852885
    2886 #. #-#-#-#-#  ithemes-exchange.pot (iThemes Exchange 1.36.4)  #-#-#-#-#
     2886#. #-#-#-#-#  ithemes-exchange.pot (iThemes Exchange 1.36.5)  #-#-#-#-#
    28872887#. Plugin Name of the plugin/theme
    28882888#: core-addons/admin/basic-reporting/init.php:21
  • ithemes-exchange/tags/1.36.5/lib/products/class.products-post-type.php

    r1429310 r1682925  
    8080
    8181            // Preserve existing meta_query
    82             $meta_query = $query->get( 'meta_query' );
     82            $meta_query = $query->get( 'meta_query', array() );
    8383
    8484            // Add ours to existing
  • ithemes-exchange/tags/1.36.5/lib/transactions/activity/class.collection.php

    r1332217 r1682925  
    8686
    8787        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            }
    8993        }
    9094    }
  • ithemes-exchange/tags/1.36.5/readme.txt

    r1651045 r1682925  
    33Tags: ecommerce
    44Requires at least: 3.7
    5 Tested up to: 4.7
    6 Stable tag: 1.36.4
     5Tested up to: 4.8
     6Stable tag: 1.36.5
    77License: GPLv2 or later
    88
     
    8888
    8989== 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
    9095= 1.36.4 =
    9196* Fix: Account for new return types in iThemes Security reCaptcha Module
  • ithemes-exchange/trunk/api/downloads.php

    r1337460 r1682925  
    360360
    361361    // 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 ) ) ) {
    363363        if ( ! is_wp_error( $response ) ) {
    364364            $valid_response_codes = array(
  • ithemes-exchange/trunk/history.txt

    r1651045 r1682925  
    132113211.36.4 - Timothy Jacobs, Chris Jean
    13221322    Fix: Account for new return types in iThemes Security reCaptcha Module
     13231.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  
    22/*
    33 * Plugin Name: iThemes Exchange
    4  * Version: 1.36.4
     4 * Version: 1.36.5
    55 * Text Domain: it-l10n-ithemes-exchange
    66 * Description: Easily sell your digital goods with iThemes Exchange, simple ecommerce for WordPress
     
    2525class IT_Exchange {
    2626
    27     var $_version         = '1.36.4';
     27    var $_version         = '1.36.5';
    2828    var $_wp_minimum      = '3.5';
    2929    var $_slug            = 'ithemes-exchange';
  • ithemes-exchange/trunk/lang/ithemes-exchange.pot

    r1651045 r1682925  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: iThemes Exchange 1.36.4\n"
     5"Project-Id-Version: iThemes Exchange 1.36.5\n"
    66"Report-Msgid-Bugs-To: http://ithemes.com/support/\n"
    7 "POT-Creation-Date: 2017-05-03 21:07:02+00:00\n"
     7"POT-Creation-Date: 2017-06-21 20:01:39+00:00\n"
    88"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
    99"MIME-Version: 1.0\n"
     
    28842884msgstr ""
    28852885
    2886 #. #-#-#-#-#  ithemes-exchange.pot (iThemes Exchange 1.36.4)  #-#-#-#-#
     2886#. #-#-#-#-#  ithemes-exchange.pot (iThemes Exchange 1.36.5)  #-#-#-#-#
    28872887#. Plugin Name of the plugin/theme
    28882888#: core-addons/admin/basic-reporting/init.php:21
  • ithemes-exchange/trunk/lib/products/class.products-post-type.php

    r1429310 r1682925  
    8080
    8181            // Preserve existing meta_query
    82             $meta_query = $query->get( 'meta_query' );
     82            $meta_query = $query->get( 'meta_query', array() );
    8383
    8484            // Add ours to existing
  • ithemes-exchange/trunk/lib/transactions/activity/class.collection.php

    r1332217 r1682925  
    8686
    8787        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            }
    8993        }
    9094    }
  • ithemes-exchange/trunk/readme.txt

    r1651045 r1682925  
    33Tags: ecommerce
    44Requires at least: 3.7
    5 Tested up to: 4.7
    6 Stable tag: 1.36.4
     5Tested up to: 4.8
     6Stable tag: 1.36.5
    77License: GPLv2 or later
    88
     
    8888
    8989== 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
    9095= 1.36.4 =
    9196* Fix: Account for new return types in iThemes Security reCaptcha Module
Note: See TracChangeset for help on using the changeset viewer.