Changeset 16423
- Timestamp:
- 11/17/2010 12:33:32 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r16413 r16423 614 614 $terms = "'" . implode( "','", array_map( 'sanitize_title_for_query', $terms ) ) . "'"; 615 615 $terms = $wpdb->get_col( " 616 SELECT $ resulting_field616 SELECT $wpdb->term_taxonomy.$resulting_field 617 617 FROM $wpdb->term_taxonomy 618 618 INNER JOIN $wpdb->terms USING (term_id) 619 619 WHERE taxonomy IN ($taxonomies) 620 AND $ field IN ($terms)620 AND $wpdb->terms.$field IN ($terms) 621 621 " ); 622 622 break;
Note: See TracChangeset
for help on using the changeset viewer.