From 5a87458f85ec2f224c3d3b9b1a447c38d8454baa Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Wed, 30 Dec 2009 16:54:28 +0000 Subject: [PATCH] Don't pass deprecated argument to comments_number(). git-svn-id: https://develop.svn.wordpress.org/trunk@12586 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 4c3e0e655f..c4edd4887c 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -988,7 +988,7 @@ function comments_popup_link( $zero = false, $one = false, $more = false, $css_c echo apply_filters( 'comments_popup_link_attributes', '' ); echo ' title="' . esc_attr( sprintf( __('Comment on %s'), $title ) ) . '">'; - comments_number( $zero, $one, $more, $number ); + comments_number( $zero, $one, $more ); echo ''; }