6591e7b0 by Adam Heath

s/authSessionId/sessionId/ in checkSessionService call.

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