Changeset 2908 for trunk/wp-includes/classes.php
- Timestamp:
- 09/23/2005 11:24:19 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r2892 r2908 30 30 var $is_comments_popup = false; 31 31 var $is_admin = false; 32 var $is_object = false; 32 33 33 34 function init_query_flags() { … … 49 50 $this->is_paged = false; 50 51 $this->is_admin = false; 52 $this->is_object = false; 51 53 } 52 54 … … 525 527 $where .= ')'; 526 528 } 529 530 if (! $this->is_object ) 531 $where .= ' AND post_status != "object"'; 527 532 528 533 // Apply filters on where and join prior to paging so that any
Note: See TracChangeset
for help on using the changeset viewer.