Changeset 15627 for trunk/wp-includes/query.php
- Timestamp:
- 09/17/2010 10:35:05 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r15626 r15627 1284 1284 } 1285 1285 1286 if ( empty($qv['cat']) || ($qv['cat'] == '0') ) {1286 if ( empty($qv['cat']) || ($qv['cat'] == '0') ) 1287 1287 $this->is_category = false; 1288 } else { 1289 $this->is_category = strpos($qv['cat'], '-') !== false; 1290 } 1288 else 1289 $this->is_category = strpos($qv['cat'], '-') === false; 1291 1290 1292 1291 if ( !empty($qv['category_name']) ) {
Note: See TracChangeset
for help on using the changeset viewer.