From: markt Date: Sun, 27 Sep 2009 17:44:26 +0000 (+0000) Subject: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47324 X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=52b9d6612295df845bbb0a773d9f8b307b8b34ad;p=tomcat7.0 Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=47324 Fix submit IRL when behind a reverse proxy Patch by Maik Jablonski git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@819361 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/manager/sessionsList.jsp b/webapps/manager/sessionsList.jsp index 563032104..bceb479c3 100644 --- a/webapps/manager/sessionsList.jsp +++ b/webapps/manager/sessionsList.jsp @@ -26,7 +26,7 @@ <% String path = (String) request.getAttribute("path"); - String submitUrl = ((HttpServletRequest)pageContext.getRequest()).getRequestURL().append("?path=").append(path).toString(); + String submitUrl = ((HttpServletRequest)pageContext.getRequest()).getRequestURI() + "?path=" + path; Collection activeSessions = (Collection) request.getAttribute("activeSessions"); %> @@ -36,7 +36,7 @@ - + Sessions Administration for <%= path %>