From 1deef71a5220ab1741ff4325e94f3feb485e7eb0 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 16 Sep 2008 00:24:43 +0000 Subject: [PATCH] Add missing return. Props DD32. see #7635 git-svn-id: http://svn.automattic.com/wordpress/trunk@8898 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-template.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index a11a5e3406..c09fed6801 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -851,6 +851,7 @@ function comment_reply_link($args = array(), $comment = null, $post = null) { $args = wp_parse_args($args, $defaults); if ( 0 == $args['depth'] || $args['max_depth'] < $args['depth'] ) + return; extract($args, EXTR_SKIP);