Changeset 15579 for trunk/wp-includes/functions.php
- Timestamp:
- 09/06/2010 08:09:41 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r15574 r15579 4245 4245 * @param array $queries An array of queries 4246 4246 * @param string $meta_id_column The column that holds the object id 4247 * @param string $table Which meta table to look in4248 4247 * @return string 4249 4248 */ 4250 function _wp_meta_sql( $queries, $meta_id_column , $table) {4249 function _wp_meta_sql( $queries, $meta_id_column ) { 4251 4250 global $wpdb; 4252 4251 … … 4279 4278 4280 4279 return " 4281 SELECT $meta_id_column 4282 FROM $table 4283 WHERE CASE meta_key 4280 AND CASE meta_key 4284 4281 " . implode( "\n", $clauses ) . " 4285 4282 END
Note: See TracChangeset
for help on using the changeset viewer.