Make WordPress Core

Ticket #20429: 20429.patch

File 20429.patch, 824 bytes (added by lgedeon, 13 years ago)

adds missing docblocks

  • wp-activate.php

     
    11<?php
     2/**
     3 * Handles new site activation on a multisite install. Just click link in email
     4 * or enter key from email into form on this page.
     5 *
     6 * @package WordPress
     7 */
    28define( 'WP_INSTALLING', true );
    39
    410/** Sets up the WordPress Environment. */
     
    1622
    1723do_action( 'activate_header' );
    1824
     25/**
     26 * Allow plugins and themes to hook into the new-site activation screen to add
     27 * style or extra features.
     28 */
    1929function do_activate_header() {
    2030        do_action( 'activate_wp_head' );
    2131}
    2232add_action( 'wp_head', 'do_activate_header' );
    2333
     34/**
     35 * Adds custom formating for this page.
     36 */
     37 No newline at end of file
    2438function wpmu_activate_stylesheet() {
    2539        ?>
    2640        <style type="text/css">