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

git-svn-id: https://develop.svn.wordpress.org/trunk@18004 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2011-05-23 05:49:44 +00:00
parent d996e79999
commit 85d36b3db0
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";
}
?>