Fix ordering. Closes #1103.

This commit is contained in:
Mike Jolley 2012-06-10 09:11:33 +01:00
parent 9031d15756
commit 15265fe721
2 changed files with 2 additions and 1 deletions

View File

@ -182,6 +182,7 @@ Yes you can! Join in on our [GitHub repository](http://github.com/woothemes/wooc
* Fix - Backorders for variations allow more than stock to be purchased now
* Fix - Conflict with compfight.
* Fix - Tax calc JS NaN fix
* Fix - Category widget name sorting.
* Localization - Updated localisations
* Localization - Updated currency symbols
* Localization - translations for admin menu names

View File

@ -55,7 +55,7 @@ class WooCommerce_Widget_Product_Categories extends WP_Widget {
} else {
$cat_args['orderby'] = $o;
$cat_args['orderby'] = 'title';
}