summaryrefslogtreecommitdiffstats
path: root/wp-includes/query.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-13 09:27:15 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2006-09-13 09:27:15 +0000
commitbb1e6055fe18618f9274e2d23d4b1e72b7243797 (patch)
treebd799756c88ec5bc5e5ca4c2b60db6ef49996c42 /wp-includes/query.php
parentf41f35fc323e7aae3f8c9d7e696eb54e306cc679 (diff)
downloadwordpress-mu-bb1e6055fe18618f9274e2d23d4b1e72b7243797.tar.gz
wordpress-mu-bb1e6055fe18618f9274e2d23d4b1e72b7243797.tar.xz
wordpress-mu-bb1e6055fe18618f9274e2d23d4b1e72b7243797.zip
WP Merge to rev 4186
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@744 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/query.php')
-rw-r--r--wp-includes/query.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/wp-includes/query.php b/wp-includes/query.php
index 925eff5..689b27f 100644
--- a/wp-includes/query.php
+++ b/wp-includes/query.php
@@ -350,7 +350,7 @@ class WP_Query {
if ('404' == $qv['error']) {
$this->is_404 = true;
if ( !empty($query) ) {
- do_action('parse_query', array(&$this));
+ do_action_ref_array('parse_query', array(&$this));
}
return;
}
@@ -498,7 +498,7 @@ class WP_Query {
}
if ( !empty($query) ) {
- do_action('parse_query', array(&$this));
+ do_action_ref_array('parse_query', array(&$this));
}
}
@@ -526,7 +526,7 @@ class WP_Query {
function &get_posts() {
global $wpdb, $pagenow, $user_ID;
- do_action('pre_get_posts', array(&$this));
+ do_action_ref_array('pre_get_posts', array(&$this));
// Shorthand.
$q = &$this->query_vars;