Comments: Realign parameter documentation in the DocBlocks for `comment_author_email_link()` and `get_comment_author_email_link()` following [37348].
Also adds a missing return description for `get_comment_author_email_link()`. Props flixos90 for the initial patch. Fixes #36571. Built from https://develop.svn.wordpress.org/trunk@37349 git-svn-id: http://core.svn.wordpress.org/trunk@37315 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a6c393828d
commit
5f62db2f21
wp-includes
|
@ -169,7 +169,8 @@ function comment_author_email_link( $linktext = '', $before = '', $after = '', $
|
||||||
* @param string $before Optional. Text or HTML to display before the email link. Default empty.
|
* @param string $before Optional. Text or HTML to display before the email link. Default empty.
|
||||||
* @param string $after Optional. Text or HTML to display after the email link. Default empty.
|
* @param string $after Optional. Text or HTML to display after the email link. Default empty.
|
||||||
* @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object. Default is the current comment.
|
* @param int|WP_Comment $comment Optional. Comment ID or WP_Comment object. Default is the current comment.
|
||||||
* @return string
|
* @return string HTML markup for the comment author email link. By default, the email address is obfuscated
|
||||||
|
* via the {@see 'comment_email'} filter with antispambot().
|
||||||
*/
|
*/
|
||||||
function get_comment_author_email_link( $linktext = '', $before = '', $after = '', $comment = null ) {
|
function get_comment_author_email_link( $linktext = '', $before = '', $after = '', $comment = null ) {
|
||||||
$comment = get_comment( $comment );
|
$comment = get_comment( $comment );
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.6-alpha-37348';
|
$wp_version = '4.6-alpha-37349';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue