Commit: cac87199585e1659a6900ba42f346725ada988f0 Author: Daniel P. Brown <[email protected]> Wed, 10 Oct 2012 12:33:54 -0400 Parents: 7b795e12efca7df8cf687853a5584d89133ce516 Branches: master
Link: http://git.php.net/?p=web/master.git;a=commitdiff;h=cac87199585e1659a6900ba42f346725ada988f0 Log: Make the display of the extensions a bit neater; don't require a horizontal scroll just to see them all. Changed paths: M manage/mirrors.php Diff: diff --git a/manage/mirrors.php b/manage/mirrors.php index 31cd10a..26e49eb 100644 --- a/manage/mirrors.php +++ b/manage/mirrors.php @@ -287,7 +287,7 @@ if (intval($id) !== 0) { </tr> <tr> <th align="right">Available extensions:</th> - <td><?php echo get_extension_info($row['hostname']); ?></td> + <td><div style="height:48px;width:400px;overflow:auto;"><?php echo str_replace(',',' ',get_extension_info($row['hostname'])); ?></div></td> </tr> <tr> <th align="right">Local Stats:</th> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
