Make WordPress Core

Changeset 21454


Ignore:
Timestamp:
08/06/2012 12:59:34 AM (12 years ago)
Author:
nacin
Message:

Docs for wp-activate.php. props lgedeon. fixes #20429.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-activate.php

    r21413 r21454  
    11<?php
     2/**
     3 * Confirms that the activation key that is sent in an email after a user signs
     4 * up for a new blog matchs the key for that user and then displays confirmation.
     5 *
     6 * @package WordPress
     7 */
     8
     9/** Define ABSPATH as this file's directory */
    210define( 'WP_INSTALLING', true );
    311
     
    1725do_action( 'activate_header' );
    1826
     27/**
     28 * Adds an action hook specific to this page that fires on wp_head
     29 *
     30 * @since MU
     31 */
    1932function do_activate_header() {
    2033    do_action( 'activate_wp_head' );
     
    2235add_action( 'wp_head', 'do_activate_header' );
    2336
     37/**
     38 * Loads styles specific to this page.
     39 *
     40 * @since MU
     41 */
    2442function wpmu_activate_stylesheet() {
    2543    ?>
Note: See TracChangeset for help on using the changeset viewer.