Changeset 38288 for trunk/src/wp-includes/query.php
- Timestamp:
- 08/20/2016 02:31:31 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/query.php
r38279 r38288 1603 1603 $this->is_robots = true; 1604 1604 1605 $qv['p'] = absint($qv['p']); 1605 if ( ! is_scalar( $qv['p'] ) || $qv['p'] < 0 ) { 1606 $qv['p'] = 0; 1607 $qv['error'] = '404'; 1608 } else { 1609 $qv['p'] = intval( $qv['p'] ); 1610 } 1611 1606 1612 $qv['page_id'] = absint($qv['page_id']); 1607 1613 $qv['year'] = absint($qv['year']);
Note: See TracChangeset
for help on using the changeset viewer.