Changeset 28522 for trunk/src/wp-includes/meta.php
- Timestamp:
- 05/19/2014 06:34:01 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/meta.php
r28328 r28522 848 848 * @param array $meta_query (optional) A meta query 849 849 */ 850 function __construct( $meta_query = false ) {850 public function __construct( $meta_query = false ) { 851 851 if ( !$meta_query ) 852 852 return; … … 876 876 * @param array $qv The query variables 877 877 */ 878 function parse_query_vars( $qv ) {878 public function parse_query_vars( $qv ) { 879 879 $meta_query = array(); 880 880 … … 904 904 * @return string MySQL type 905 905 */ 906 function get_cast_for_type( $type = '' ) {906 public function get_cast_for_type( $type = '' ) { 907 907 if ( empty( $type ) ) 908 908 return 'CHAR'; … … 931 931 * @return array( 'join' => $join_sql, 'where' => $where_sql ) 932 932 */ 933 function get_sql( $type, $primary_table, $primary_id_column, $context = null ) {933 public function get_sql( $type, $primary_table, $primary_id_column, $context = null ) { 934 934 global $wpdb; 935 935
Note: See TracChangeset
for help on using the changeset viewer.