From a5937fc33a6cffa59a500611cad9b85e1fceee0b Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 16 Oct 2008 20:05:34 +0000 Subject: [PATCH] Add avatar_size arg. Props Otto42. see #7635 git-svn-id: http://svn.automattic.com/wordpress/trunk@9207 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/comment-template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/comment-template.php b/wp-includes/comment-template.php index ae58ad38cc..9d35a271df 100644 --- a/wp-includes/comment-template.php +++ b/wp-includes/comment-template.php @@ -1071,7 +1071,7 @@ class Walker_Comment extends Walker {
- + %s Says:'), get_comment_author_link()) ?>
comment_approved == '0') : ?> @@ -1132,7 +1132,7 @@ function wp_list_comments($args = array(), $comments = null ) { $comment_depth = 1; $defaults = array('walker' => null, 'depth' => '', 'style' => 'ul', 'callback' => null, 'end-callback' => null, 'type' => 'all', - 'page' => get_query_var('cpage'), 'per_page' => ''); + 'page' => get_query_var('cpage'), 'per_page' => '', 'avatar_size' => 32); $r = wp_parse_args( $args, $defaults );