From 31186d41d9a1452f2ecf0c902fc00cde2ee1d822 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Tue, 16 Sep 2008 00:24:43 +0000 Subject: [PATCH] Add missing return. Props DD32. see #7635 git-svn-id: https://develop.svn.wordpress.org/trunk@8898 602fd350-edb4-49c9-b593-d223f7449a82 --- 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);