Index: plugin-install.php
--- plugin-install.php Base (BASE)
+++ plugin-install.php Locally Modified (Based On LOCAL)
@@ -314,7 +314,14 @@
 
 	if ( is_wp_error( $api ) )
 		wp_die( $api );
-
+        //Loop the contributor array, create link tags similar to $api->author and then implode the array into a string.
+        if ( ! empty( $api->contributors ) && ( is_array( $api->contributors )) ):
+            $contributors=array();
+            foreach ($api->contributors as $contributor=>$url):
+                $contributors[]='<a href="' . $url . '">' . $contributor . '</a>';
+            endforeach;
+            $api->contributors=implode(", ",$contributors);
+        endif;
 	$plugins_allowedtags = array(
 		'a' => array( 'href' => array(), 'title' => array(), 'target' => array() ),
 		'abbr' => array( 'title' => array() ), 'acronym' => array( 'title' => array() ),
@@ -380,6 +387,8 @@
 			<li><strong><?php _e('Version:') ?></strong> <?php echo $api->version ?></li>
 <?php endif; if ( ! empty( $api->author ) ) : ?>
 			<li><strong><?php _e('Author:') ?></strong> <?php echo links_add_target($api->author, '_blank') ?></li>
+                        <?php endif; if ( ! empty( $api->contributors ) ) : ?>
+			<li><strong><?php _e('Contributors:') ?></strong> <?php echo links_add_target($api->contributors, '_blank') ?></li>
 <?php endif; if ( ! empty( $api->last_updated ) ) : ?>
 			<li><strong><?php _e('Last Updated:') ?></strong> <span title="<?php echo $api->last_updated ?>"><?php
 							printf( __('%s ago'), human_time_diff(strtotime($api->last_updated)) ) ?></span></li>
