Fix ambiguous column error. See #12891

git-svn-id: https://develop.svn.wordpress.org/trunk@16423 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
scribu 2010-11-17 12:33:32 +00:00
parent b0abda23b6
commit 3e01f9a81d

View File

@ -613,11 +613,11 @@ function _transform_terms( &$terms, $taxonomies, $field, $resulting_field ) {
case 'name':
$terms = "'" . implode( "','", array_map( 'sanitize_title_for_query', $terms ) ) . "'";
$terms = $wpdb->get_col( "
SELECT $resulting_field
SELECT $wpdb->term_taxonomy.$resulting_field
FROM $wpdb->term_taxonomy
INNER JOIN $wpdb->terms USING (term_id)
WHERE taxonomy IN ($taxonomies)
AND $field IN ($terms)
AND $wpdb->terms.$field IN ($terms)
" );
break;