Make WordPress Core


Ignore:
Timestamp:
05/17/2011 05:58:40 AM (14 years ago)
Author:
nacin
Message:

Credits page HTML closing tag and alt fix, props Utkarsh. Link gravatars to profiles. fixes #17384.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/credits.php

    r17933 r17942  
    6969}
    7070
    71 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";
     71echo '<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";
    7272
    7373$gravatar = is_ssl() ? 'https://secure.gravatar.com/avatar/' : 'http://0.gravatar.com/avatar/';
     
    7878    shuffle( $members ); // We were going to sort by ability to pronounce "hierarchical," but that wouldn't be fair to Matt.
    7979    foreach ( $members as $member_slug => $member ) {
    80         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";
     80        echo '<li class="wp-person" id="wp-person-' . $member_slug . '">' . "\n\t";
     81        echo '<a href="' . $results['data']['profile_prefix'] . $member[2] . '"><img src="' . $gravatar . $member[3] . '?s=60" class="gravatar" alt="' . esc_attr( $member[0] ) . '" /></a>' . "\n\t";
     82        echo '<a class="web" href="' . $results['data']['profile_prefix'] . $member[2] . '">' . $member[0] . "</a>\n\t";
     83        echo '<br /><span class="title">' . translate( $member[1] ) . "</span>\n</li>\n";
    8184    }
    8285    echo "</ul>\n";
Note: See TracChangeset for help on using the changeset viewer.