6591e7b0 by Adam Heath

s/authSessionId/sessionId/ in checkSessionService call.

Refs: #7593
1 parent 5212166b
......@@ -416,7 +416,7 @@ public class DirectControlServlet extends HttpServlet {
// prolong the session
if (UtilValidate.isNotEmpty(checkSessionService)) {
dispatcher.runSync(checkSessionService, UtilMisc.<String, Object>toMap("authSessionId", authToken, "userLogin", userLogin));
dispatcher.runSync(checkSessionService, UtilMisc.<String, Object>toMap("sessionId", authToken, "userLogin", userLogin));
}
}
}
......