summaryrefslogtreecommitdiffstats
path: root/wp-includes/classes.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/classes.php')
-rw-r--r--wp-includes/classes.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/wp-includes/classes.php b/wp-includes/classes.php
index 3c1db01..a23442c 100644
--- a/wp-includes/classes.php
+++ b/wp-includes/classes.php
@@ -228,7 +228,7 @@ class WP {
$this->query_vars = apply_filters('request', $this->query_vars);
- do_action('parse_request', array(&$this));
+ do_action_ref_array('parse_request', array(&$this));
}
function send_headers() {
@@ -270,7 +270,7 @@ class WP {
}
}
- do_action('send_headers', array(&$this));
+ do_action_ref_array('send_headers', array(&$this));
}
function build_query_string() {
@@ -338,7 +338,7 @@ class WP {
$this->query_posts();
$this->handle_404();
$this->register_globals();
- do_action('wp', array(&$this));
+ do_action_ref_array('wp', array(&$this));
}
function WP() {