Changeset 47557 for trunk/src/wp-includes/rewrite.php
- Timestamp:
- 04/09/2020 03:41:04 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rewrite.php
r47550 r47557 597 597 $query = array(); 598 598 foreach ( (array) $query_vars as $key => $value ) { 599 if ( in_array( $key, $wp->public_query_vars, true ) ) {599 if ( in_array( (string) $key, $wp->public_query_vars, true ) ) { 600 600 $query[ $key ] = $value; 601 601 if ( isset( $post_type_query_vars[ $key ] ) ) {
Note: See TracChangeset
for help on using the changeset viewer.