Changeset 15501 for trunk/wp-includes/query.php
- Timestamp:
- 08/16/2010 01:36:21 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r15471 r15501 1247 1247 if ( !empty($query) || !isset($this->query) ) { 1248 1248 $this->init(); 1249 if ( is_array($query) ) 1250 $this->query_vars = $query; 1251 else 1252 parse_str($query, $this->query_vars); 1253 $this->query = $query; 1249 $this->query = $this->query_vars = wp_parse_args($query); 1254 1250 } 1255 1251
Note: See TracChangeset
for help on using the changeset viewer.