Browse Source

Both approve pages were using pagecontext rather than the configured

issuer
pull/1462/head
Stephen Moore 6 years ago committed by Justin Richer
parent
commit
8430b42ab3
  1. 2
      openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approve.jsp
  2. 2
      openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approveDevice.jsp

2
openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approve.jsp

@ -37,7 +37,7 @@
</h1>
<form name="confirmationForm"
action="${pageContext.request.contextPath.endsWith('/') ? pageContext.request.contextPath : pageContext.request.contextPath.concat('/') }authorize" method="post">
action="${ config.issuer }${ config.issuer.endsWith('/') ? '' : '/' }authorize" method="post">
<div class="row">
<div class="span5 offset1 well-small" style="text-align: left">

2
openid-connect-server-webapp/src/main/webapp/WEB-INF/views/approveDevice.jsp

@ -37,7 +37,7 @@
</h1>
<form name="confirmationForm"
action="${pageContext.request.contextPath.endsWith('/') ? pageContext.request.contextPath : pageContext.request.contextPath.concat('/') }device/approve" method="post">
action="${ config.issuer }${ config.issuer.endsWith('/') ? '' : '/' }device/approve" method="post">
<div class="row">
<div class="span5 offset1 well-small" style="text-align: left">

Loading…
Cancel
Save