From f72e16f571f14d1c3454e04689d27737dd71d064 Mon Sep 17 00:00:00 2001 From: str4d <str4d@mail.i2p> Date: Sat, 25 Feb 2012 19:28:22 +0000 Subject: [PATCH] Close line break tags properly --- apps/i2ptunnel/jsp/wizard.jsp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/i2ptunnel/jsp/wizard.jsp b/apps/i2ptunnel/jsp/wizard.jsp index 95699a73b4..22f8af15cf 100644 --- a/apps/i2ptunnel/jsp/wizard.jsp +++ b/apps/i2ptunnel/jsp/wizard.jsp @@ -425,7 +425,7 @@ } %> </td></tr> <tr><td><%=intl._("Tunnel name and description")%></td><td> - <%=request.getParameter("name")%><br> + <%=request.getParameter("name")%><br /> <%=request.getParameter("description")%> </td></tr><% if (tunnelIsClient) { %> @@ -439,16 +439,16 @@ } %> <tr><td><%=intl._("Binding address and port")%></td><td><% if ((tunnelIsClient && "streamrclient".equals(tunnelType)) || (!tunnelIsClient && !"streamrserver".equals(tunnelType))) { %> - <%=request.getParameter("targetHost")%><br><% + <%=request.getParameter("targetHost")%><br /><% } if (!tunnelIsClient) { %> - <%=request.getParameter("targetPort")%><br><% + <%=request.getParameter("targetPort")%><br /><% } if (tunnelIsClient || "httpbidirserver".equals(tunnelType)) { %> - <br><%=request.getParameter("port")%><% + <br /><%=request.getParameter("port")%><% } if ((tunnelIsClient && !"streamrclient".equals(tunnelType)) || "httpbidirserver".equals(tunnelType) || "streamrserver".equals(tunnelType)) { %> - <br><%=request.getParameter("reachableBy")%><% + <br /><%=request.getParameter("reachableBy")%><% } %> </td></tr> <tr><td><%=intl._("Tunnel auto-start")%></td><td><% -- GitLab