From 4432dc752b34d6e50e908a3d9d17c2a80d75c4e1 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 28 Nov 2014 11:22:23 +0000 Subject: [PATCH] 4.1 Docs Audit: Various formatting fixes for inline documentation in class-wp-list-table.php and comment-template.php. See #30469. Built from https://develop.svn.wordpress.org/trunk@30610 git-svn-id: http://core.svn.wordpress.org/trunk@30600 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-list-table.php | 2 +- wp-includes/comment-template.php | 12 ++++++++++-- wp-includes/version.php | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index 488d1a851d..8c48ad2ddc 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -65,7 +65,7 @@ class WP_List_Table { private $_pagination; /** - * The view switcher modes + * The view switcher modes. * * @since 4.1.0 * @var array diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index 1377f3cc05..7afba67a98 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -53,6 +53,7 @@ function get_comment_author( $comment_ID = 0 ) { */ function comment_author( $comment_ID = 0 ) { $author = get_comment_author( $comment_ID ); + /** * Filter the comment author's name for display. * @@ -76,6 +77,7 @@ function comment_author( $comment_ID = 0 ) { */ function get_comment_author_email( $comment_ID = 0 ) { $comment = get_comment( $comment_ID ); + /** * Filter the comment author's returned email address. * @@ -104,6 +106,7 @@ function get_comment_author_email( $comment_ID = 0 ) { */ function comment_author_email( $comment_ID = 0 ) { $author_email = get_comment_author_email( $comment_ID ); + /** * Filter the comment author's email for display. * @@ -157,11 +160,12 @@ function comment_author_email_link( $linktext = '', $before = '', $after = '' ) */ function get_comment_author_email_link( $linktext = '', $before = '', $after = '' ) { global $comment; + /** * Filter the comment author's email for display. * * Care should be taken to protect the email address and assure that email - * harvesters do not capture your commenters' email address. + * harvesters do not capture your commenter's email address. * * @since 1.2.0 * @since 4.1.0 The `$comment` parameter was added. @@ -280,6 +284,7 @@ function get_comment_author_url( $comment_ID = 0 ) { $comment = get_comment( $comment_ID ); $url = ('http://' == $comment->comment_author_url) ? '' : $comment->comment_author_url; $url = esc_url( $url, array('http', 'https') ); + /** * Filter the comment author's URL. * @@ -303,6 +308,7 @@ function get_comment_author_url( $comment_ID = 0 ) { */ function comment_author_url( $comment_ID = 0 ) { $author_url = get_comment_author_url( $comment_ID ); + /** * Filter the comment author's URL for display. * @@ -571,6 +577,7 @@ function get_comment_excerpt( $comment_ID = 0 ) { */ function comment_excerpt( $comment_ID = 0 ) { $comment_excerpt = get_comment_excerpt($comment_ID); + /** * Filter the comment excerpt for display. * @@ -592,6 +599,7 @@ function comment_excerpt( $comment_ID = 0 ) { */ function get_comment_ID() { global $comment; + /** * Filter the returned comment ID. * @@ -1386,7 +1394,7 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null * @param array $args Comment reply link arguments. See {@see get_comment_reply_link()} * for more information on accepted arguments. * @param object $comment The object of the comment being replied to. - * @param WP_Post $post The WP_Post object. + * @param WP_Post $post The {@see WP_Post} object. */ $args = apply_filters( 'comment_reply_link_args', $args, $comment, $post ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0b799ef542..7ecbe008c0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.1-beta2-30609'; +$wp_version = '4.1-beta2-30610'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.