Commit: 10d8705cbeaee048af83db9516067419d7fb197c Author: Peter Cowburn <[email protected]> Sat, 2 Mar 2019 10:38:30 +0000 Parents: 99bdfa5d0b0ceb68c8b370e42c26e07d5cea60ed Branches: master
Link: http://git.php.net/?p=web/php.git;a=commitdiff;h=10d8705cbeaee048af83db9516067419d7fb197c Log: add list email addresses to mailing lists page Changed paths: M mailing-lists.php Diff: diff --git a/mailing-lists.php b/mailing-lists.php index 5b94415..ed788ff 100644 --- a/mailing-lists.php +++ b/mailing-lists.php @@ -308,7 +308,7 @@ function output_lists_table($mailing_lists) "<th>Newsgroup</th><th>Normal</th><th>Digest</th></tr>\n"; } else { echo '<tr align="center">'; - echo '<td align="left"><strong>' . $listinfo[1] . '</strong><br><small>'. $listinfo[2] . '</small></td>'; + echo '<td align="left"><strong>' . $listinfo[1] . '</strong> <small><<a href="mailto:' . $listinfo[0] . '@lists.php.net">' . $listinfo[0] . '@lists.php.net</a>></small><br><small>'. $listinfo[2] . '</small></td>'; echo '<td>' . ($listinfo[3] ? 'yes' : 'no') . '</td>'; // Let the list name defined with a string, if the -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
