Make WordPress Core

Changeset 30610


Ignore:
Timestamp:
11/28/2014 11:21:40 AM (10 years ago)
Author:
DrewAPicture
Message:

4.1 Docs Audit: Various formatting fixes for inline documentation in class-wp-list-table.php and comment-template.php.

See #30469.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-list-table.php

    r30537 r30610  
    6666
    6767    /**
    68      * The view switcher modes
     68     * The view switcher modes.
    6969     *
    7070     * @since 4.1.0
  • trunk/src/wp-includes/comment-template.php

    r30547 r30610  
    5454function comment_author( $comment_ID = 0 ) {
    5555    $author = get_comment_author( $comment_ID );
     56
    5657    /**
    5758     * Filter the comment author's name for display.
     
    7778function get_comment_author_email( $comment_ID = 0 ) {
    7879    $comment = get_comment( $comment_ID );
     80
    7981    /**
    8082     * Filter the comment author's returned email address.
     
    105107function comment_author_email( $comment_ID = 0 ) {
    106108    $author_email = get_comment_author_email( $comment_ID );
     109
    107110    /**
    108111     * Filter the comment author's email for display.
     
    158161function get_comment_author_email_link( $linktext = '', $before = '', $after = '' ) {
    159162    global $comment;
     163
    160164    /**
    161165     * Filter the comment author's email for display.
    162166     *
    163167     * Care should be taken to protect the email address and assure that email
    164      * harvesters do not capture your commenters' email address.
     168     * harvesters do not capture your commenter's email address.
    165169     *
    166170     * @since 1.2.0
     
    281285    $url = ('http://' == $comment->comment_author_url) ? '' : $comment->comment_author_url;
    282286    $url = esc_url( $url, array('http', 'https') );
     287
    283288    /**
    284289     * Filter the comment author's URL.
     
    304309function comment_author_url( $comment_ID = 0 ) {
    305310    $author_url = get_comment_author_url( $comment_ID );
     311
    306312    /**
    307313     * Filter the comment author's URL for display.
     
    572578function comment_excerpt( $comment_ID = 0 ) {
    573579    $comment_excerpt = get_comment_excerpt($comment_ID);
     580
    574581    /**
    575582     * Filter the comment excerpt for display.
     
    593600function get_comment_ID() {
    594601    global $comment;
     602
    595603    /**
    596604     * Filter the returned comment ID.
     
    13871395     *                         for more information on accepted arguments.
    13881396     * @param object  $comment The object of the comment being replied to.
    1389      * @param WP_Post $post    The WP_Post object.
     1397     * @param WP_Post $post    The {@see WP_Post} object.
    13901398     */
    13911399    $args = apply_filters( 'comment_reply_link_args', $args, $comment, $post );
Note: See TracChangeset for help on using the changeset viewer.