Fix default orderby for tt_id query. see #9937

git-svn-id: https://develop.svn.wordpress.org/trunk@11468 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-05-27 17:00:30 +00:00
parent 2abee7d3b6
commit e38c2c7c07
1 changed files with 4 additions and 3 deletions

View File

@ -1250,7 +1250,10 @@ function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
$orderby = '';
$order = '';
} else {
$orderby = 't.term_id';
if ( 'tt_ids' == $fields )
$orderby = 'tr.term_taxonomy_id';
else
$orderby = 't.term_id';
}
if ( !empty($orderby) )
@ -1277,8 +1280,6 @@ function wp_get_object_terms($object_ids, $taxonomies, $args = array()) {
} else if ( 'ids' == $fields || 'names' == $fields ) {
$terms = array_merge($terms, $wpdb->get_col($query));
} else if ( 'tt_ids' == $fields ) {
if ( !empty($order_by) )
$orderby = "ORDER BY tr.term_taxonomy_id";
$terms = $wpdb->get_col("SELECT tr.term_taxonomy_id FROM $wpdb->term_relationships AS tr INNER JOIN $wpdb->term_taxonomy AS tt ON tr.term_taxonomy_id = tt.term_taxonomy_id WHERE tr.object_id IN ($object_ids) AND tt.taxonomy IN ($taxonomies) $orderby $order");
}