Index: lams_common/src/java/org/lamsfoundation/lams/integration/security/Authenticator.java =================================================================== diff -u -r66d8c0867b8f221842d7c09b755ee205bb121b33 -r0634f5f225696597f6c8b14013d694e159a86efe --- lams_common/src/java/org/lamsfoundation/lams/integration/security/Authenticator.java (.../Authenticator.java) (revision 66d8c0867b8f221842d7c09b755ee205bb121b33) +++ lams_common/src/java/org/lamsfoundation/lams/integration/security/Authenticator.java (.../Authenticator.java) (revision 0634f5f225696597f6c8b14013d694e159a86efe) @@ -101,8 +101,8 @@ Date requestTimeMinusTimeToLive = new Date(datetimeParam - timeToLiveLoginRequest * 60 * 1000); Date now = new Date(); if (requestTimePlusTimeToLive.before(now) || requestTimeMinusTimeToLive.after(now)) { - throw new AuthenticationException("Login Request can't be older than " + timeToLiveLoginRequest - + " minutes. Please, refresh your previous page and try again."); + throw new AuthenticationException("Request is not in the time range of " + timeToLiveLoginRequest + + " minutes. Please, contact sysadmin."); } }