Make WordPress Core

Changeset 25273


Ignore:
Timestamp:
09/06/2013 01:37:59 AM (11 years ago)
Author:
nacin
Message:

Short descriptions for inline docs should end with a period, per the vast majority of core. see #25229.

Location:
trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/admin-footer.php

    r25252 r25273  
    2828        <?php
    2929        /**
    30          * Filter the "Thank you" text displayed in the admin footer
     30         * Filter the "Thank you" text displayed in the admin footer.
    3131         *
    3232         * @since 2.8.0
     
    3939        <?php
    4040        /**
    41          * Filter the version/update text displayed in the admin footer
     41         * Filter the version/update text displayed in the admin footer.
    4242         *
    4343         * @see core_update_footer() WordPress prints the current version and update information,
     
    5454<?php
    5555/**
    56  * Print scripts or data before the default footer scripts
     56 * Print scripts or data before the default footer scripts.
    5757 *
    5858 * @since 2.5.0
     
    6262
    6363/**
    64  * Prints any scripts and data queued for the footer
     64 * Prints any scripts and data queued for the footer.
    6565 *
    6666 * @since 2.8.0
     
    6969
    7070/**
    71  * Print scripts or data after the default footer scripts
     71 * Print scripts or data after the default footer scripts.
    7272 *
    73  * @since unknown
     73 * @since 2.8.0
    7474 *
    75  * @param type $GLOBALS['hook_suffix'] The current admin page.
     75 * @param string $GLOBALS['hook_suffix'] The current admin page.
    7676 */
    7777do_action("admin_footer-" . $GLOBALS['hook_suffix']);
  • trunk/src/wp-admin/index.php

    r25250 r25273  
    123123        <?php
    124124        /**
    125          * Add content to the welcome panel on the admin dashboard
     125         * Add content to the welcome panel on the admin dashboard.
    126126         *
    127127         * To remove the default welcome panel, use remove_action():
  • trunk/src/wp-comments-post.php

    r25251 r25273  
    2424if ( empty( $post->comment_status ) ) {
    2525    /**
    26      * Fires when a comment is attempted on a post that does not exist
     26     * Fires when a comment is attempted on a post that does not exist.
    2727     *
    2828     * @since unknown
     
    4040if ( ! comments_open( $comment_post_ID ) ) {
    4141    /**
    42      * Fires when a comment is attempted on a post that has comments closed
     42     * Fires when a comment is attempted on a post that has comments closed.
    4343     *
    4444     * @since unknown
     
    4949} elseif ( 'trash' == $status ) {
    5050    /**
    51      * Fires when a comment is attempted on a trashed post
     51     * Fires when a comment is attempted on a trashed post.
    5252     *
    5353     * @since 2.9.0
     
    5858} elseif ( ! $status_obj->public && ! $status_obj->private ) {
    5959    /**
    60      * Fires when a comment is attempted on a post in draft mode
     60     * Fires when a comment is attempted on a post in draft mode.
    6161     *
    6262     * @since unknown
     
    6767} elseif ( post_password_required( $comment_post_ID ) ) {
    6868    /**
    69      * Fires when a comment is attempted on a password-protected post
     69     * Fires when a comment is attempted on a password-protected post.
    7070     *
    7171     * @since unknown
     
    7676} else {
    7777    /**
    78      * Fires before a comment is posted
     78     * Fires before a comment is posted.
    7979     *
    8080     * @since unknown
     
    130130
    131131/**
    132  * Perform other actions when comment cookies are set
     132 * Perform other actions when comment cookies are set.
    133133 *
    134134 * @since 3.4.0
     
    142142
    143143/**
    144  * The location URI to send commenter after posting
     144 * The location URI to send commenter after posting.
    145145 *
    146146 * @since unknown
  • trunk/src/wp-includes/pluggable.php

    r25230 r25273  
    866866
    867867    /**
    868      * Filter the redirect location
     868     * Filter the redirect location.
    869869     *
    870870     * @since 2.1.0
     
    876876
    877877    /**
    878      * Filter the redirect status code
     878     * Filter the redirect status code.
    879879     *
    880880     * @since 2.3.0
  • trunk/src/wp-trackback.php

    r25253 r25273  
    108108
    109109    /**
    110      * Fires after a trackback is added to a post
     110     * Fires after a trackback is added to a post.
    111111     *
    112112     * @since 1.2.0
Note: See TracChangeset for help on using the changeset viewer.