Plugin Directory

Changeset 738579


Ignore:
Timestamp:
07/10/2013 06:56:42 AM (13 years ago)
Author:
garyc40
Message:

Sync with github

Location:
wp-e-commerce/branches/branch-3.8.12
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wp-e-commerce/branches/branch-3.8.12/.gitignore

    r670272 r738579  
    1 .idea
     1cookbooks
     2tmp
  • wp-e-commerce/branches/branch-3.8.12/readme.md

    r734587 r738579  
    1616-------------------------
    1717
    18 * The latest stable version is [3.8.12](http://wordpress.org/extend/plugins/wp-e-commerce).
     18* The latest stable version is [3.8.12.1](http://wordpress.org/extend/plugins/wp-e-commerce).
    1919* Active development version: 3.8.13-dev (branch [master](https://github.com/wp-e-commerce/WP-e-Commerce))
    2020* [Roadmap for 3.8.13](https://github.com/wp-e-commerce/wp-e-commerce/wiki/Roadmap)
  • wp-e-commerce/branches/branch-3.8.12/readme.txt

    r734601 r738579  
    55Requires at least: 3.4
    66Tested up to: 3.6
    7 Stable tag: 3.8.12
     7Stable tag: 3.8.12.1
    88
    99WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online.
     
    146146
    147147== Changelog ==
     148
     149= 3.8.12.1 =
     150* Fix: Fatal error in wpsc_product_list_exclude_child_categories() due to other themes
     151       or plugins calling get_posts() before the main query is set up
    148152
    149153= 3.8.12 =
  • wp-e-commerce/branches/branch-3.8.12/wp-shopping-cart.php

    r734601 r738579  
    44  * Plugin URI: http://getshopped.org/
    55  * 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.12
     6  * Version: 3.8.12.1
    77  * Author: Instinct Entertainment
    88  * Author URI: http://getshopped.org/
  • wp-e-commerce/branches/branch-3.8.12/wpsc-admin/display-items.page.php

    r725142 r738579  
    488488function wpsc_product_list_exclude_child_categories( $query ) {
    489489
    490     if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )
     490    if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || ! $query->is_main_query() )
    491491        return;
    492492
  • wp-e-commerce/branches/branch-3.8.12/wpsc-core/wpsc-constants.php

    r734601 r738579  
    2929        define( 'WPSC_URL',       plugins_url( '', __FILE__ ) );
    3030    // Define Plugin version
    31     define( 'WPSC_VERSION', '3.8.12' );
     31    define( 'WPSC_VERSION', '3.8.12.1' );
    3232    define( 'WPSC_MINOR_VERSION', '55f8cfa0d7' );
    33     define( 'WPSC_PRESENTABLE_VERSION', '3.8.12' );
     33    define( 'WPSC_PRESENTABLE_VERSION', '3.8.12.1' );
    3434    define( 'WPSC_DB_VERSION', 4 );
    3535
Note: See TracChangeset for help on using the changeset viewer.