Changeset 1871 for trunk/wp-includes/classes.php
- Timestamp:
- 11/20/2004 06:32:31 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/classes.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r1835 r1871 42 42 $this->is_home = false; 43 43 $this->is_404 = false; 44 $this->is_paged = false; 44 45 45 46 unset($this->posts); … … 172 173 } 173 174 174 if ( ($this->is_date || $this->is_author || $this->is_category) 175 if ('' != $qv['paged']) { 176 $this->is_paged = true; 177 } 178 179 if ( ($this->is_date || $this->is_author || $this->is_category || $this->is_paged) 175 180 && (! ($this->is_single || $this->is_page)) ) { 176 181 $this->is_archive = true;
Note: See TracChangeset
for help on using the changeset viewer.