From 7ea2dd25dcf32d3776c46738cb42bf0578078452 Mon Sep 17 00:00:00 2001
From: Utkarsh Kukreti <utkarshkukreti@gmail.com>
Date: Fri, 13 May 2011 12:13:43 +0530
Subject: [PATCH] Fix markup on credits page, see #17384.

---
 wp-admin/credits.php |    8 +++++---
 1 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/wp-admin/credits.php b/wp-admin/credits.php
index ef2944f..df427b0 100644
--- a/wp-admin/credits.php
+++ b/wp-admin/credits.php
@@ -68,16 +68,18 @@ if ( ! $results ) {
 	exit;
 }
 
-echo '<p>' . __( "WordPress is created by a worldwide team of passionate individuals. We couldn't possibly list them all, but here some of the most influential people currently involved with the project:" ) . "<p>\n";
+echo '<p>' . __( "WordPress is created by a worldwide team of passionate individuals. We couldn't possibly list them all, but here some of the most influential people currently involved with the project:" ) . "</p>\n";
 
 $gravatar = is_ssl() ? 'https://secure.gravatar.com/avatar/' : 'http://0.gravatar.com/avatar/';
 
+$counter = 0;
 foreach ( $results['people'] as $group_slug => $members ) {
 	echo '<h3 class="wp-people-group">' . translate( $results['groups'][ $group_slug ] ) . "</h3>\n";
 	echo '<ul class="wp-people-group" id="wp-people-group-' . $group_slug . '">' . "\n";
 	shuffle( $members ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
 	foreach ( $members as $member_slug => $member ) {
-		echo '<li class="wp-person" id="wp-person-' . $member_slug . '"><img src="' . $gravatar . $member[3] . '?s=60" class="gravatar" /><a class="web" href="' . $results['data']['profile_prefix'] . $member[2] . '">' . $member[0] . '</a><br /><span class="title">' . translate( $member[1] ) . "</span></li>\n";
+		echo '<li class="wp-person" id="wp-person-' . $counter . '"><img src="' . $gravatar . $member[3] . '?s=60" class="gravatar" alt="' . $member[0] . '" /><a class="web" href="' . $results['data']['profile_prefix'] . $member[2] . '">' . $member[0] . '</a><br /><span class="title">' . translate( $member[1] ) . "</span></li>\n";
+		$counter++;
 	}
 	echo "</ul>\n";
 }
@@ -112,4 +114,4 @@ __( 'Designer' );
 __( 'XML-RPC Developer' );
 __( 'Internationalization' );
 
-?>
\ No newline at end of file
+?>
-- 
1.7.3.1.msysgit.0

