Ticket #19784: 19784.3.diff
File 19784.3.diff, 1.2 KB (added by , 10 years ago) |
---|
-
src/wp-admin/includes/plugin-install.php
372 372 373 373 echo "</div>\n"; 374 374 375 foreach ( (array) $api->contributors as $username => $url ) { 376 $api->contributors[ $username ] = '<a href="' . esc_url( $url ) . '">' . $username . '</a>'; 377 } 378 375 379 ?> 376 380 <div id="<?php echo $_tab; ?>-content"> 377 381 <div class="fyi"> … … 380 384 <li><strong><?php _e('Version:') ?></strong> <?php echo $api->version ?></li> 381 385 <?php endif; if ( ! empty( $api->author ) ) : ?> 382 386 <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> 383 389 <?php endif; if ( ! empty( $api->last_updated ) ) : ?> 384 390 <li><strong><?php _e('Last Updated:') ?></strong> <span title="<?php echo $api->last_updated ?>"><?php 385 391 printf( __('%s ago'), human_time_diff(strtotime($api->last_updated)) ) ?></span></li>