From ab4782d5aab6e7abd51d9f630660691874c52b05 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 19 Sep 2008 21:45:01 +0000 Subject: [PATCH] Fix depth inversion. see #7635 git-svn-id: https://develop.svn.wordpress.org/trunk@8941 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/comment-template.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index c09fed6801..cf199c0f61 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -943,7 +943,7 @@ class Walker_Comment extends Walker {
- 'div-comment', 'depth' => $args['depth'], 'max_depth' => $depth)) ?> + 'div-comment', 'depth' => $depth, 'max_depth' => $args['depth'])) ?>