/logs: Correctly format unavailable crypto warnings (ticket #1996)

This commit is contained in:
str4d
2017-07-07 18:40:10 +00:00
parent d8831151fe
commit e83d31f749
2 changed files with 4 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ public class LogsHelper extends HelperBase {
StringBuilder buf = new StringBuilder(128);
for (SigType t : SigType.values()) {
if (!t.isAvailable()) {
buf.append("<b>Crypto:</b> ").append(t.toString()).append(" unavailable<br>");
buf.append("<tr><td><b>Crypto:</b></td><td>").append(t.toString()).append(" unavailable</td></tr>");
}
}
return buf.toString();

View File

@@ -1,5 +1,7 @@
2017-07-06 str4d
* Console: Fix log file size config bug on /configlogging bug (ticket #1996)
* Console:
- /configlogging: Fix log file size config bug (ticket #1996)
- /logs: Correctly format unavailable crypto warnings (ticket #1996)
2017-07-02 str4d
* Console: