From 0d01992968e237247e3c08e5e7ecb12672515eff Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Wed, 28 Sep 2016 04:20:55 +0000 Subject: [PATCH] Set default value of 'max_depth' in `get_comment_reply_link()`. Introduced in [8878]. Props d4z_c0nf. Fixes #38170. Built from https://develop.svn.wordpress.org/trunk@38669 git-svn-id: http://core.svn.wordpress.org/trunk@38612 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-template.php | 4 +++- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index 42ebd41e3c..581c7b71e5 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1576,7 +1576,8 @@ function comments_popup_link( $zero = false, $one = false, $more = false, $css_c * Default 'respond'. * @type string $reply_text The text of the Reply link. Default 'Reply'. * @type string $login_text The text of the link to reply if logged out. Default 'Log in to Reply'. - * @type int $depth' The depth of the new comment. Must be greater than 0 and less than the value + * @type int $max_depth The max depth of the comment tree. Default 0. + * @type int $depth The depth of the new comment. Must be greater than 0 and less than the value * of the 'thread_comments_depth' option set in Settings > Discussion. Default 0. * @type string $before The text or HTML to add before the reply link. Default empty. * @type string $after The text or HTML to add after the reply link. Default empty. @@ -1593,6 +1594,7 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null 'reply_text' => __( 'Reply' ), 'reply_to_text' => __( 'Reply to %s' ), 'login_text' => __( 'Log in to Reply' ), + 'max_depth' => 0, 'depth' => 0, 'before' => '', 'after' => '' diff --git a/wp-includes/version.php b/wp-includes/version.php index d333129293..528cd6884c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.7-alpha-38668'; +$wp_version = '4.7-alpha-38669'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.