Changeset 15687
- Timestamp:
- 10/02/2010 10:52:15 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r15686 r15687 1248 1248 $this->is_page = true; 1249 1249 $this->is_single = false; 1250 } elseif ( !empty($qv['s']) ) {1251 $this->is_search = true;1252 1250 } else { 1253 // Look for archive queries. Dates, categories, authors. 1251 // Look for archive queries. Dates, categories, authors, search. 1252 1253 if ( !empty($qv['s']) ) { 1254 $this->is_search = true; 1255 } 1254 1256 1255 1257 if ( '' !== $qv['second'] ) {
Note: See TracChangeset
for help on using the changeset viewer.