Index: lams_common/src/java/org/lamsfoundation/lams/integration/security/Authenticator.java =================================================================== RCS file: /usr/local/cvsroot/lams_common/src/java/org/lamsfoundation/lams/integration/security/Authenticator.java,v diff -u -r1.9 -r1.10 --- lams_common/src/java/org/lamsfoundation/lams/integration/security/Authenticator.java 5 Dec 2014 15:28:40 -0000 1.9 +++ lams_common/src/java/org/lamsfoundation/lams/integration/security/Authenticator.java 5 Dec 2014 16:04:43 -0000 1.10 @@ -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."); } }