forked from I2P_Developers/i2p.i2p
console escape fixes and cleanups
This commit is contained in:
@@ -433,9 +433,9 @@ public class SummaryHelper extends HelperBase {
|
||||
buf.append("</td><td align=\"left\"><b><a href=\"tunnels#").append(h.toBase64().substring(0,4));
|
||||
buf.append("\" target=\"_top\" title=\"").append(_("Show tunnels")).append("\">");
|
||||
if (name.length() < 18)
|
||||
buf.append(name);
|
||||
buf.append(DataHelper.escapeHTML(name));
|
||||
else
|
||||
buf.append(name.substring(0,15)).append("…");
|
||||
buf.append(DataHelper.escapeHTML(name.substring(0,15))).append("…");
|
||||
buf.append("</a></b></td>\n");
|
||||
LeaseSet ls = _context.netDb().lookupLeaseSetLocally(h);
|
||||
if (ls != null && _context.tunnelManager().getOutboundClientTunnelCount(h) > 0) {
|
||||
|
||||
Reference in New Issue
Block a user