Don't pass deprecated argument to comments_number().

git-svn-id: https://develop.svn.wordpress.org/trunk@12586 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2009-12-30 16:54:28 +00:00
parent 12cc58c227
commit 5a87458f85

View File

@ -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 '</a>';
}