Changeset 4186 for trunk/wp-includes/query.php
- Timestamp:
- 09/12/2006 05:45:23 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r4144 r4186 351 351 $this->is_404 = true; 352 352 if ( !empty($query) ) { 353 do_action ('parse_query', array(&$this));353 do_action_ref_array('parse_query', array(&$this)); 354 354 } 355 355 return; … … 499 499 500 500 if ( !empty($query) ) { 501 do_action ('parse_query', array(&$this));501 do_action_ref_array('parse_query', array(&$this)); 502 502 } 503 503 } … … 527 527 global $wpdb, $pagenow, $user_ID; 528 528 529 do_action ('pre_get_posts', array(&$this));529 do_action_ref_array('pre_get_posts', array(&$this)); 530 530 531 531 // Shorthand.
Note: See TracChangeset
for help on using the changeset viewer.