Changeset 738579
- Timestamp:
- 07/10/2013 06:56:42 AM (13 years ago)
- Location:
- wp-e-commerce/branches/branch-3.8.12
- Files:
-
- 6 edited
-
.gitignore (modified) (1 diff)
-
readme.md (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-shopping-cart.php (modified) (1 diff)
-
wpsc-admin/display-items.page.php (modified) (1 diff)
-
wpsc-core/wpsc-constants.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-e-commerce/branches/branch-3.8.12/.gitignore
r670272 r738579 1 .idea 1 cookbooks 2 tmp -
wp-e-commerce/branches/branch-3.8.12/readme.md
r734587 r738579 16 16 ------------------------- 17 17 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). 19 19 * Active development version: 3.8.13-dev (branch [master](https://github.com/wp-e-commerce/WP-e-Commerce)) 20 20 * [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 5 5 Requires at least: 3.4 6 6 Tested up to: 3.6 7 Stable tag: 3.8.12 7 Stable tag: 3.8.12.1 8 8 9 9 WP e-Commerce is a free WordPress Shopping Cart Plugin that lets customers buy your products, services and digital downloads online. … … 146 146 147 147 == 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 148 152 149 153 = 3.8.12 = -
wp-e-commerce/branches/branch-3.8.12/wp-shopping-cart.php
r734601 r738579 4 4 * Plugin URI: http://getshopped.org/ 5 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.12 6 * Version: 3.8.12.1 7 7 * Author: Instinct Entertainment 8 8 * Author URI: http://getshopped.org/ -
wp-e-commerce/branches/branch-3.8.12/wpsc-admin/display-items.page.php
r725142 r738579 488 488 function wpsc_product_list_exclude_child_categories( $query ) { 489 489 490 if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) )490 if ( ! is_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX ) || ! $query->is_main_query() ) 491 491 return; 492 492 -
wp-e-commerce/branches/branch-3.8.12/wpsc-core/wpsc-constants.php
r734601 r738579 29 29 define( 'WPSC_URL', plugins_url( '', __FILE__ ) ); 30 30 // Define Plugin version 31 define( 'WPSC_VERSION', '3.8.12 ' );31 define( 'WPSC_VERSION', '3.8.12.1' ); 32 32 define( 'WPSC_MINOR_VERSION', '55f8cfa0d7' ); 33 define( 'WPSC_PRESENTABLE_VERSION', '3.8.12 ' );33 define( 'WPSC_PRESENTABLE_VERSION', '3.8.12.1' ); 34 34 define( 'WPSC_DB_VERSION', 4 ); 35 35
Note: See TracChangeset
for help on using the changeset viewer.