Changes from trunk/wp-includes/meta.php at r17170 to branches/3.1/wp-includes/meta.php at r17531
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.1/wp-includes/meta.php
r17170 r17531 369 369 * Default: 'CHAR' 370 370 * 371 * @param string $ meta_type371 * @param string $type Type of meta 372 372 * @param string $primary_table 373 373 * @param string $primary_id_column … … 375 375 * @return array( 'join' => $join_sql, 'where' => $where_sql ) 376 376 */ 377 function _get_meta_sql( $meta_query, $ meta_type, $primary_table, $primary_id_column, $context = null ) {378 global $wpdb; 379 380 if ( ! $meta_table = _get_meta_table( $ meta_type ) )381 return false; 382 383 $meta_id_column = esc_sql( $ meta_type . '_id' );377 function _get_meta_sql( $meta_query, $type, $primary_table, $primary_id_column, $context = null ) { 378 global $wpdb; 379 380 if ( ! $meta_table = _get_meta_table( $type ) ) 381 return false; 382 383 $meta_id_column = esc_sql( $type . '_id' ); 384 384 385 385 $join = ''; … … 443 443 } 444 444 445 return apply_filters_ref_array( 'get_meta_sql', array( compact( 'join', 'where' ), $meta_query, $ meta_type, $primary_table, $primary_id_column, &$context ) );445 return apply_filters_ref_array( 'get_meta_sql', array( compact( 'join', 'where' ), $meta_query, $type, $primary_table, $primary_id_column, &$context ) ); 446 446 } 447 447
Note: See TracChangeset
for help on using the changeset viewer.