Make WordPress Core


Ignore:
Timestamp:
09/12/2006 05:45:23 PM (17 years ago)
Author:
ryan
Message:

do_action_ref_array(). fixes #3125

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/classes.php

    r4165 r4186  
    229229        $this->query_vars = apply_filters('request', $this->query_vars);
    230230
    231         do_action('parse_request', array(&$this));
     231        do_action_ref_array('parse_request', array(&$this));
    232232    }
    233233
     
    271271        }
    272272
    273         do_action('send_headers', array(&$this));
     273        do_action_ref_array('send_headers', array(&$this));
    274274    }
    275275
     
    339339        $this->handle_404();
    340340        $this->register_globals();
    341         do_action('wp', array(&$this));
     341        do_action_ref_array('wp', array(&$this));
    342342    }
    343343
Note: See TracChangeset for help on using the changeset viewer.