From c96be134daefd58acb6cef57ba4afcab825b950c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonard=20Br=C3=BCnings?= Date: Mon, 21 Mar 2016 20:00:16 +0100 Subject: [PATCH] Fix unqualified access to implicit request object ... If the OpenId request object parameter is used it hides the implicit request object, which in turn causes the expression to fail. To circumvent this we need to access the request object through the pageContext. --- .../src/main/webapp/WEB-INF/views/approve.jsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approve.jsp b/openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approve.jsp index c4af69026..b4ec13cb2 100644 --- a/openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approve.jsp +++ b/openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approve.jsp @@ -36,7 +36,7 @@
+ action="${pageContext.request.contextPath.endsWith('/') ? pageContext.request.contextPath : pageContext.request.contextPath.concat('/') }authorize" method="post">