Merge branch 'refs/heads/release-2-0-10'

Conflicts:
	admin/post-types/product.php
	classes/gateways/paypal/class-wc-gateway-paypal.php
	readme.txt
	woocommerce-core-functions.php
	woocommerce.php

Signed-off-by: Coen Jacobs <coenjacobs@gmail.com>
This commit is contained in:
Coen Jacobs 2013-05-15 12:50:52 +02:00
commit 9a946a2f6a
2 changed files with 12 additions and 10 deletions

View File

@ -4,7 +4,7 @@ Tags: ecommerce, e-commerce, commerce, woothemes, wordpress ecommerce, affiliate
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=paypal@woothemes.com&item_name=Donation+for+WooCommerce
Requires at least: 3.5
Tested up to: 3.6 beta 2
Stable tag: 2.0.9
Stable tag: 2.0.10
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html
@ -169,13 +169,21 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
* Feature - Split frontend styles into separate appearance/layout stylesheets and removed the enable/disable options.
* Feature - Added woocommerce-responsive.css to optimise default layout on handheld devices.
* Feature - Bulk edit increase / decrease variation prices by fixed or percentage values
* Tweak - Searching for SKU in admin panel can also be done via lowercase 'sku:' instead of just 'SKU:'
* Tweak - Added filter to check the 'Create account' checkbox on checkout by default
* Tweak - Update CPT parameters for 'product_variation' and 'shop_coupon' to be no longer public
* Tweak - COD processing instead of on-hold
* Tweak - Added filter to explicitly hide terms agreement checkbox
* Tweak - New System Status report layout, now plugin list is better visually and very better to read
* Tweak - content-widget-product.php template for product lists inside core widgets
* Fix - Changed MyException to Exception in Checkout class as MyException class does not exist in WooCommerce
* Refactor - Taken out Piwik integration, use http://wordpress.org/extend/plugins/woocommerce-piwik-integration/ from now on
* Refactor - Taken out ShareYourCart integration, use http://wordpress.org/extend/plugins/shareyourcart/ from now on
* Refactor - Moved woocommerce_get_formatted_product_name function into WC_Product class
* Localization - Portugese locale by jpBenfica
* Localization - Spanish, Romanian updates.
= 2.0.10 - 15/05/2013 =
* Tweak - Searching for SKU in admin panel can also be done via lowercase 'sku:' instead of just 'SKU:'
* Fix - Cast term_id as int in product data write panel that will resolve issues with numerical attributes
* Fix - Correct label for RUB symbol - added a dot after it
* Fix - Javascript escapes to stop breaking scripts when used with translations
@ -184,15 +192,9 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
* Fix - Allow layered nav to work with non pa_ prepended taxonomies
* Fix - Better backwards compatibility with _woocommerce_exclude_image
* Fix - is_on_sale() method now returns true for products with a sale product of 0
* Fix - Changed MyException to Exception in Checkout class as MyException class does not exist in WooCommerce
* Fix - For when get_the_terms() returns false inside woocommerce_get_product_terms()
* Fix - PayPal has a 9 item limit.
* Fix - PayPal has a 9 item limit
* Fix - Replace deprecated wp_convert_bytes_to_hr() with size_format()
* Refactor - Taken out Piwik integration, use http://wordpress.org/extend/plugins/woocommerce-piwik-integration/ from now on
* Refactor - Taken out ShareYourCart integration, use http://wordpress.org/extend/plugins/shareyourcart/ from now on
* Refactor - Moved woocommerce_get_formatted_product_name function into WC_Product class
* Localization - Portugese locale by jpBenfica
* Localization - Spanish, Romanian updates.
= 2.0.9 - 02/05/2013 =
* Feature - Added is_product_taxonomy() conditonal.

View File

@ -1482,7 +1482,7 @@ function woocommerce_get_product_terms( $object_id, $taxonomy, $fields = 'all' )
if ( ! is_array( $object_terms ) )
return array();
$all_terms = array_flip( get_terms( $taxonomy, array( 'menu_order' => 'ASC', 'fields' => 'ids' ) ) );
switch ( $fields ) {