NIHVIVO-658 Removed response parameter from FreeMarkerHttpServlet.getFreeMarkerComponentsForJsp, since not needed.
This commit is contained in:
parent
aadaf6fb10
commit
0d656c8370
3 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@
|
||||||
// since it's the first jsp we hit.
|
// since it's the first jsp we hit.
|
||||||
String footer = (String) request.getAttribute("ftl_footer");
|
String footer = (String) request.getAttribute("ftl_footer");
|
||||||
if (footer == null) {
|
if (footer == null) {
|
||||||
FreeMarkerHttpServlet.getFreeMarkerComponentsForJsp(request, response);
|
FreeMarkerHttpServlet.getFreeMarkerComponentsForJsp(request);
|
||||||
}
|
}
|
||||||
%>
|
%>
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.freemarker.FreeMarkerHttpServlet" %>
|
<%@ page import="edu.cornell.mannlib.vitro.webapp.controller.freemarker.FreeMarkerHttpServlet" %>
|
||||||
<%
|
<%
|
||||||
FreeMarkerHttpServlet.getFreeMarkerComponentsForJsp(request, response);
|
FreeMarkerHttpServlet.getFreeMarkerComponentsForJsp(request);
|
||||||
%>
|
%>
|
||||||
|
|
||||||
${ftl_identity}
|
${ftl_identity}
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
// since it's the first jsp we hit.
|
// since it's the first jsp we hit.
|
||||||
String menu = (String) request.getAttribute("ftl_menu");
|
String menu = (String) request.getAttribute("ftl_menu");
|
||||||
if (menu == null) {
|
if (menu == null) {
|
||||||
FreeMarkerHttpServlet.getFreeMarkerComponentsForJsp(request, response);
|
FreeMarkerHttpServlet.getFreeMarkerComponentsForJsp(request);
|
||||||
}
|
}
|
||||||
%>
|
%>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue