From 0163da57c42cf6976e6814daa86c38bbc281f3f9 Mon Sep 17 00:00:00 2001 From: westi Date: Wed, 30 Dec 2009 16:54:28 +0000 Subject: [PATCH] Don't pass deprecated argument to comments_number(). git-svn-id: http://svn.automattic.com/wordpress/trunk@12586 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 ''; }