Add paragraph tags around the blocks of contributors. see #17532.

git-svn-id: http://svn.automattic.com/wordpress/trunk@18004 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2011-05-23 05:49:44 +00:00
parent 00f7846136
commit 02aad2f192
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ foreach ( (array) $results['lists'] as $group_slug => $members ) {
echo '<h3 class="wp-props-group">' . $title . "</h3>\n\n";
array_walk( $members, '_wp_credits_add_profile_link', $results['data']['profile_prefix'] );
shuffle( $members );
echo wp_sprintf( '%l.', $members );
echo '<p>' . wp_sprintf( '%l.', $members ) . "</p>\n\n";
}
?>