Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    isc_loginRequired and loadISC cacheOnly="true"

    I'm using Sc 8.1 Power.

    I have a SSO (CAS Server) login page where I've included the login required marker to enable reloginFlow.
    Now I've added a loadISC tag with cacheOnly=true on the same login page.
    But I get a js error in the firebug console, because isc.RPCManager is not defined, at the last line of the login required marker:
    if (isc) isc.RPCManager.delayCall("handleLoginRequired", [window]);

    I don't think it's a real problem, but the error message can get to the user.

    this seems to fix the problem:

    if (isc && isc.RPCManager) isc.RPCManager.delayCall("handleLoginRequired", [window]);

    #2
    Quite right, we've added this and it will appear in future nightlies. Thanks for the suggestion.

    Comment

    Working...
    X