Make WordPress Core

Ticket #19784: 19784.3.diff

File 19784.3.diff, 1.2 KB (added by SergeyBiryukov, 10 years ago)

Simplified version

  • src/wp-admin/includes/plugin-install.php

     
    372372
    373373        echo "</div>\n";
    374374
     375        foreach ( (array) $api->contributors as $username => $url ) {
     376                $api->contributors[ $username ] = '<a href="' . esc_url( $url ) . '">' . $username . '</a>';
     377        }
     378
    375379        ?>
    376380        <div id="<?php echo $_tab; ?>-content">
    377381        <div class="fyi">
     
    380384                        <li><strong><?php _e('Version:') ?></strong> <?php echo $api->version ?></li>
    381385<?php endif; if ( ! empty( $api->author ) ) : ?>
    382386                        <li><strong><?php _e('Author:') ?></strong> <?php echo links_add_target($api->author, '_blank') ?></li>
     387<?php endif; if ( ! empty( $api->contributors ) ) : ?>
     388                        <li><strong><?php _e('Contributors:') ?></strong> <?php echo links_add_target( implode( ', ', $api->contributors ), '_blank' ); ?></li>
    383389<?php endif; if ( ! empty( $api->last_updated ) ) : ?>
    384390                        <li><strong><?php _e('Last Updated:') ?></strong> <span title="<?php echo $api->last_updated ?>"><?php
    385391                                                        printf( __('%s ago'), human_time_diff(strtotime($api->last_updated)) ) ?></span></li>