Changeset 3789

Show
Ignore:
Timestamp:
05/22/06 19:23:46 (3 years ago)
Author:
ryan
Message:

Add parse_request, send_headers, and wp actions.

Files:

Legend:

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

    r3715 r3789  
    225225        if ( isset($error) ) 
    226226            $this->query_vars['error'] = $error; 
     227 
     228        do_action('parse_request', array(&$this)); 
    227229    } 
    228230 
     
    264266            } 
    265267        } 
     268 
     269        do_action('send_headers', array(&$this)); 
    266270    } 
    267271 
     
    334338        $this->handle_404(); 
    335339        $this->register_globals(); 
     340        do_action('wp', array(&$this)); 
    336341    } 
    337342