Make WordPress Core

Changeset 3789


Ignore:
Timestamp:
05/22/2006 07:23:46 PM (18 years ago)
Author:
ryan
Message:

Add parse_request, send_headers, and wp actions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.