1
0
mirror of https://github.com/php/web-php.git synced 2026-03-23 23:02:13 +01:00

No spaces inside parenthesis

For consistency with the rest of the code.

Closes GH-551.
This commit is contained in:
Mathias Reker ⚡️
2022-06-17 16:47:11 +02:00
committed by GitHub
parent 0cfc90abf2
commit 7dd64e1b79

View File

@@ -325,7 +325,7 @@ function output_lists_table($mailing_lists)
echo '<td>' . ($larchive ? "<a href=\"http://marc.info/?l={$larchive}\">yes</a>" : 'n/a') . '</td>';
echo '<td>' . ($listinfo[6] ? "<a href=\"news://news.php.net/{$listinfo[6]}\">yes</a> <a href=\"http://news.php.net/group.php?group={$listinfo[6]}\">http</a>" : 'n/a') . '</td>';
echo '<td><input name="maillist" type="radio" value="' . $listinfo[0] . '"></td>';
echo '<td>' . ($listinfo[5] ? '<input name="maillist" type="radio" value="' . $listinfo[0] . '-digest">' : 'n/a' ) . '</td>';
echo '<td>' . ($listinfo[5] ? '<input name="maillist" type="radio" value="' . $listinfo[0] . '-digest">' : 'n/a') . '</td>';
echo "</tr>\n";
}
}