Index: lams_central/src/java/org/lamsfoundation/lams/web/LoginRequestLtiServlet.java =================================================================== diff -u -r07fadecf1cf2f62a067d4120bdbb614ef32bd79e -r11f550a11acda03543e8f39a8ee53a856ab0f705 --- lams_central/src/java/org/lamsfoundation/lams/web/LoginRequestLtiServlet.java (.../LoginRequestLtiServlet.java) (revision 07fadecf1cf2f62a067d4120bdbb614ef32bd79e) +++ lams_central/src/java/org/lamsfoundation/lams/web/LoginRequestLtiServlet.java (.../LoginRequestLtiServlet.java) (revision 11f550a11acda03543e8f39a8ee53a856ab0f705) @@ -97,7 +97,7 @@ String contextId = request.getParameter(BasicLTIConstants.CONTEXT_ID); String contextLabel = request.getParameter(BasicLTIConstants.CONTEXT_LABEL); - /* LKC-178 custom context label + /* LKC-178 custom context label. Do not change this comment. String customContextLabel = request.getParameter(BasicLTIConstants.RESOURCE_LINK_TITLE); if (StringUtils.isBlank(customContextLabel)) { customContextLabel = request.getParameter(BasicLTIConstants.CUSTOM_PREFIX + BasicLTIConstants.CONTEXT_LABEL); @@ -106,7 +106,7 @@ customContextLabel = contextLabel; } contextLabel = customContextLabel; - */ + End of LKC-178 customisation */ //log all incoming request parameters, so we can use them later to debug future issues String logMessage = "LoginRequestLtiServlet is requested with the following parameters: ";